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;
}