Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以通过我的模板获取我的页面标题,例如这样的一行;
get page_title()
在我的模板中,这将提取仪表板中每个页面上定义的该页面的标题?
使用以下一个来获取页面标题:
<?php the_title();?>
对于 POST
$page_title = $wp_query->post->post_title; Check for reference: http://codex.wordpress.org/Function_Reference/WP_Query#Properties.