Expired
Hi,
I turned my blog page to my post page, i don’t want the title to show “blog”, how can i change the title to whatever i want?
thank you
Hello,
Please go to file includes/view/page_header.php and find this line(46): <?php if( is_home() ) $title = esc_attr__('Blog', 'codeless'); ?>
<?php if( is_home() ) $title = esc_attr__('Blog', 'codeless'); ?>
Replace with this: <?php if( is_home() ) $title = esc_html($title) ?>
<?php if( is_home() ) $title = esc_html($title) ?>
Save changes and refresh page. Let us know.
Best regards!
You must be logged in to reply to this topic.