• I can’t get rid of the author link in my posts. The one that shows up after the title saying “by (Author) on (date)”. I’d like to be rid of that from showing up altogether.

    I’m also running comicpress 2.9 if that makes a difference.

Viewing 1 replies (of 1 total)
  • There’s a span for it you can use a display: none in CSS to remove it.

    Or if you’re using a child theme (which you should be) do this:

    add_filter(‘comicpress_display_post_author’, ‘custom_remove_post_author’);

    function custom_remove_post_author() {
    return ”;
    }

Viewing 1 replies (of 1 total)

The topic ‘Remove Author Credit’ is closed to new replies.