我想显示的第一个字的帖子标题只在首页的我的网站。
My Problem:我有下面的编码,但它不适用于首页的帖子标题,但它会影响网站菜单标题和博客主标题,而我只想针对我的网站首页上的帖子标题。
add_filter( 'the_title', 'wpse_75691_trim_words' );
function wpse_75691_trim_words( $title )
{
// Limit the title to exactly one word only on the frontpage.
if (is_front_page()) {
近期网站首页突然无法打开,显示404 not found nginx。后缀加上index.php后则可以正常访问首页。现在百度引擎搜主页都被砍掉收录了,难受啊。
nginx和伪静态都设置了,内页全部正常,只有首页需要加index.php,内页打开后一切正常,内页url也没有出现index.php。
nginx.conf和index.php都有设置好,但是首页依旧404,有没有懂的大神求指教。