开发者

Update the wp title using function or code wihout updating header.php file

开发者 https://www.devze.com 2023-03-17 21:43 出处:网络
I got a requirement to update the blog page title with the recent post title. I got the result using this code and its working. I am using get_header() and page title is in header file. I have differe

I got a requirement to update the blog page title with the recent post title. I got the result using this code and its working. I am using get_header() and page title is in header file. I have different templates in theme and blog is also a template page because I am using wp as CMS.

One simple options is copy paste the header code into blog template and appl开发者_Python百科y the title. Is there any other possibility to modify the title using functions or code without copy pasting complete header code into template file.

$query = new WP_Query( array ( 'orderby' => 'date', 'order' => 'DESC', 'post_type'=>'post') );
$queried_post = get_post($query->post->ID);
$title = $queried_post->post_title;
_e($title);


Yes, you can hook into the wp_title callback (filter) and change it then. You then do not need to modify each theme's template file. Your callback function then needs to return the new title:

function my_title($currentTitle) { # ignoring other settings for now
  $query = new WP_Query( array ( 'orderby' => 'date', 'order' => 'DESC', 'post_type'=>'post') );
  $queried_post = get_post($query->post->ID);
  return $queried_post->post_title;
}

add_filter('wp_title', 'my_title');
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号