Hi @ambuj,
Thanks for reply and showing me screenshot.
I saw the problem, the title of page/post is not displaying in browser title bar.
I downloaded the theme from https://www.ads-software.com/themes/sampression-lite and checked the code. i found in the code that the theme only displays blog name for page/post and for home/front page it displays blog description along with blog name if it is set in back end.
To display post/page title in browser title bar along with blog name, add following code in functions.php file of your child theme or develop a WordPress plugin and add following code in it.
add_action('wp', 'remove_sampression_filter');
function remove_sampression_filter(){
remove_filter( 'wp_title', 'sampression_filter_wp_title' );
}
add_filter( 'wp_title', 'sampression_custom_filter_wp_title',99 );
function sampression_custom_filter_wp_title() {
// Add the blog name.
bloginfo( 'name' );
// Add the blog description for the home/front page.
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) ){
echo " | $site_description";
} else if( is_singular() ) {
echo " | " . get_the_title();
}
}
Best Regards,