原件。我的主题的php部分如下所示:
$bam_related_posts_taxonomy = get_theme_mod( \'bam_related_posts_taxonomy\', \'category\' );
$bam_post_args = array(
\'posts_per_page\' => absint( get_theme_mod( \'bam_related_posts_count\', \'3\' ) ),
\'orderby\' => \'rand\',
\'post__not_in\' => array( get_the_ID() ),
);
(*A lot of other codes here*)
wp_reset_postdata();
我在“post\\uuuu not\\u in”下面添加了此部分:
\'category__not_in\' => array(21),
这样,我排除了某个类别。它正在工作,但是,我想在我自己的插件中添加代码的最后一部分,这样当我更新主题时它不会重置。如何将最后一行输入函数。我自己的插件的php?简单地将这一行添加到其中是行不通的,它需要指向代码的其余部分。。。