可以在主域搜索结果中显示子域名帖子吗?

时间:2020-02-19 作者:RGM7

当访问者在主域上搜索某些内容时,我想显示子域帖子。我该怎么做?

1 个回复
SO网友:Kristián Filo

您可以使用本机WordPress feeds, 或者,您可以创建自己的提要,例如,只包含每个帖子的标题和链接。

您可以从其他域访问此提要。您还必须相应地更新搜索结果模板。

如果您使用一些高级的AJAX动态搜索解决方案,它会变得有点棘手——在这种情况下,您需要进行更多的编码。

相关推荐

Live search by custom tag

实时搜索:$the_query = new WP_Query( array( \'s\' => esc_attr( $_POST[\'keyword\'] ), \'post_type\' => \'custom_type\', \'sentence\' => \'true\' )); if( $the_query->have_posts() ) : while( $the_query->have_posts() ): $the_query->t