Display the_excerpt and custom fields on blog post in a particular category

Hello – I need to display the_excerpt and custom fields on all blog posts in a particular category. Can anybody help? I am using the Renew stack. I just cannot find my way around this theme.

Any help appreciated.

Hi,

You can use action and filters to add it to your blog post.

Try adding the code below in your child theme’s functions.php file.


// Add excerpt to category
// =============================================================================
function add_my_excerpt() {
     if(has_category( 'Stinky Cheeses' )) {               
           echo get_the_excerpt();
           // add your custom fields here
     }
}

add_action( 'x_after_the_content_end', 'add_my_excerpt', 10 );

Change Stinky Cheeses with the name of your category.

Hope that helps

Many thanks, I am all set.

You’re welcome!
We’re glad we were able to help you out.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.