March 2020
Beginner
660 pages
18h 28m
English
Follow these steps to conditionally load different content for posts in different scenarios:
function wpccp_chapter2_conditional_content($content) { if( is_single() ){ $content .= "<p>Additional Content for single post </p>"; }else if( is_archive() ){ $content .= "<p>Archive Page Content for each post </p>"; } return $content;}add_filter('the_content', 'wpccp_chapter2_conditional_content');
Read now
Unlock full access