我同意@brasofilo的观点,这是两个截然不同的问题,但我认为我们可以在这里回答这两个问题。
1。自动将A的子页面添加到自定义分类法B的术语C中。
我们将在自定义分类法“食物形容词”中的术语“美味”添加到ID为123的所有子页面
when they\'re published. 您可以将此添加到主题
functions.php
文件
/**
* Automatically add a custom taxonomy term to child pages of page 123 on publish
*
* @param int $post_id
* @param object $post The new post
* @return void
*/
function wpse_74605_auto_tax( $post_id, $post ) {
if ( 123 === $post->post_parent ) {
wp_set_post_terms( $post_id, \'yummy\', \'food-adjective\', true );
}
}
add_action( \'publish_page\', \'wpse_74605_auto_tax\', 10, 2 );
2。自动将子页面添加到菜单
这在许多插件中都有介绍,所以我不会在这里重新发明轮子。我推荐Viper007bond\'s
Add Descendants as Submenu Items.