如何在不使帖子标题或站点标题居中的情况下将所有页面标题放在站点范围内? 时间:2012-10-18 作者:Brad Dalton 我想以网页标题为中心的网站,特别是对登录页。如果不将帖子标题和网站上的其他内容放在中心位置,这是可能的吗? 2 个回复 SO网友:stealthyninja 也许是这样的$the_post_type = get_post_type( $post->ID ); switch ( $the_post_type ) { case \'page\': // you\'ll need something else to distinguish "landing" pages from normal ones // which would allow you to then set a flag for it if ( $some_condition ) $landing_page = true; if ( $landing_page) { // display your title with the class that\'ll centre it } break; case \'post\': case default: // display your title with the normal class } SO网友:henrywright 你可以把它放在你的主题风格中。cssh1.page-title { text-align: center; } 然后确保在主题页面中。php您有一个h1标记实例,上面有一个“页面标题”类。例如:<h1 class="page-title"><?php the_title(); ?></h1> 结束 文章导航