How to add dynamic content in title and meta description in wordpress theme for homepage, post page, category, tag and pages
You should use WordPress conditionals to determine which page you’re on, build the title based on that, then print the title. <?php $sep = ‘ | ‘; $name = get_bloginfo( ‘name’ ); if( is_home() || is_front_page() ) $title = $name . $sep . get_bloginfo( ‘description’ ); if( is_single() || is_page() ) $title = wp_title( $sep, … Read more