Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Mike

    (@mgsisk)

    The Webcomic Homepage template doesn’t include the actual page content by default. To add it back, open up /wp-content/themes/inkblot/templates/webcomic-homepage.php and add this:

    while (have_posts()) : the_post();
    	get_template_part('content', 'page');
    endwhile;

    just above this line:

    </main>

    That should get the actual page content to display, and won’t interfere with any Webcomic post content you might add (which should show up above the page content, if there is any).

    Thread Starter daneagathon

    (@daneagathon)

    Thanks, that did work. Although as an additional note, I had to put it also above the end php call

    ?>
    </main>

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Display content on comic homepage’ is closed to new replies.