Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #60026
    sentinal2k1
    Member

    Hi!
    I would like to know if it’s possible to have the featured image not display on the blog page but only on the post as the header image.

    Here is my site:
    josh-cohen.com

    Thanks!

    #60069
    Sakin
    Keymaster

    @sentinal2k1: There is no option to do that. But there are 2 options that you might want to try:
    1. Changing Archive layout to Full Content and Splitting content with more tag
    — For this, go to “Appearance => Customize => Theme Options => Layout Options” and in “Archive Content Layout”, select the option “Show Full Content(No Featured Image)”. — Now, you will get the whole posts content in your blog page. But you can split content using more that. For that you can edit your post and add more tag <!--more-->. For this, refer to http://devotepress.com/wordpress-writing-editing/how-to-split-content-using-the-more-tag-option/

    2. Build Child theme and edit the code
    — For this, you first need to build child theme. To know about child theme and also you can download Sample Catch Base child theme from http://catchthemes.com/blog/create-child-theme-wordpress/
    — Then add the following code in your child theme functions.php file:

    function catchbase_unhook_functions() {
    	remove_action( 'catchbase_before_entry_container', 'catchbase_archive_content_image', 10 );
    }
    add_action( 'init','catchbase_unhook_functions');
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘remove featured image from page’ is closed to new replies.