Scenario: Entry excerpts set to appear on content archives in Genesis theme settings. Requirement: Show full content for all the posts on a particular category archive page. Add the following in child theme’s functions.php: add_filter( ‘genesis_pre_get_option_content_archive’, ‘custom_force_full_content’ ); /** * Force full content on a specific category archive. */ function custom_force_full_content() { if ( is_category( […]
genesis_pre_get_option_content_archive
How to show full posts on the Posts page regardless of Genesis theme settings
In the comments section of my tutorial titled Show Full post followed by excerpts in Genesis, a user wrote: What if you want to show full posts on the homepage, but post excerpts on the archives? Adding the following in child theme’s functions.php displays full content for all the Posts on Posts page (homepage by […]
Recent Comments