正在查看 4 個帖子:1-4 (共 4 個帖子)
-
作者帖子
-
Google 和百度只是收錄了網站的論壇的話題,不過再之前好像也收錄過網站的回覆,現在就沒有了。
考慮到其實很多回復還是有價值的,所以想要也被收錄。
這裏主要是説下 bbPress 的回覆沒有標題,所以在網頁上也不顯示的問題。
%%title%% %%sep%% %%parent_title%% %%page%% %%sep%% %%sitename%%
對於修復描述的問題,可以使用下面的代碼,
/* Plugin Name: BBpress Addon For Yoast SEO */ add_filter( 'wpseo_metadesc', 'bafys_meta_desc' ); function bafys_meta_desc( $content ) { global $post; if ( !function_exists( 'bbp_get_topic_content' ) || $post->post_type != 'topic' ) { return $content; } $topic_content = trim( strip_tags( bbp_get_topic_content() ) ); if ( !empty( $topic_content ) ) { return $topic_content; } return $content; }
這樣子就有了,但是打算再優化優化
果然不出我所料,差不多才一天時間 Google 的搜索結果就有了增量,昨天是 1800,這會兒是 1940 ,期待是能夠把所有的論壇回覆也都收錄。
記錄一下,確實有效,第三天的收錄情況
-
作者帖子
正在查看 4 個帖子:1-4 (共 4 個帖子)
- 哎呀,回覆話題必需登錄。