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