有没有办法通过我的模板获取我的页面标题,例如像这样的一行;
get page_title()
在我的模板中,它会提取仪表板中每个页面上定义的页面标题吗?
答案 0 :(得分:2)
使用以下一个获取页面标题:
<?php the_title();?>
对于POST
$page_title = $wp_query->post->post_title;
Check for reference: http://codex.wordpress.org/Function_Reference/WP_Query#Properties.