I don’t want anything about my post content to show when people browse through search, archives, and categories. I want the feature image with the post title underneath, and nothing else. Right now it shows this + the whole post content under the title, which looks a bit messy.
Open all content-*.php files and find this line:
<?php if( ! is_category( pinboard_get_option( 'portfolio_cat' ) ) && ! ( is_category() && cat_is_ancestor_of( pinboard_get_option( 'portfolio_cat' ), get_queried_object() ) ) ) : ?>
replace it with:
<?php if( ! is_category( pinboard_get_option( 'portfolio_cat' ) ) && ! ( is_category() && cat_is_ancestor_of( pinboard_get_option( 'portfolio_cat' ), get_queried_object() ) ) && ! is_search() ) : ?>
I just did this but it doesn’t make any difference at all. Any idea?