admin管理员组文章数量:1406937
In the following code I can set tags automatically and add to a pre-existing category:
<?php function update_post_terms( $post_id ) {
if ( $parent = wp_is_post_revision( $post_id ) )
$post_id = $parent;
$post = get_post( $post_id );
if ( $post->post_type != 'post' )
return;
wp_set_post_terms( $post_id, 'News from, Videos from, Books from', 'post_tag', true );
wp_set_post_categories( $post_id );
}
add_action( 'wp_insert_post', 'update_post_terms' ); ?>
What I'm trying to do is take 3 tags that will be created automatically, and merge with the category added to the post.
For example: News from, Videos from, Books from (3 predefined tags).
If I create the Technology category, when publishing the tags would be created: News from Technology, Videos from Technology, Books from Technology.
In the following code I can set tags automatically and add to a pre-existing category:
<?php function update_post_terms( $post_id ) {
if ( $parent = wp_is_post_revision( $post_id ) )
$post_id = $parent;
$post = get_post( $post_id );
if ( $post->post_type != 'post' )
return;
wp_set_post_terms( $post_id, 'News from, Videos from, Books from', 'post_tag', true );
wp_set_post_categories( $post_id );
}
add_action( 'wp_insert_post', 'update_post_terms' ); ?>
What I'm trying to do is take 3 tags that will be created automatically, and merge with the category added to the post.
For example: News from, Videos from, Books from (3 predefined tags).
If I create the Technology category, when publishing the tags would be created: News from Technology, Videos from Technology, Books from Technology.
Share Improve this question edited Oct 25, 2019 at 21:44 BobGCA2 asked Oct 25, 2019 at 20:59 BobGCA2BobGCA2 3171 gold badge6 silver badges17 bronze badges 2 |1 Answer
Reset to default 0Try to use this plugin https://wordpress/plugins/bulk-edit-categories-tags/
Best regards
本文标签: Automatically create tags and merge with categories
版权声明:本文标题:Automatically create tags and merge with categories 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745052566a2639739.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
Something from X
what's the point of the tags? – Tom J Nowell ♦ Commented Oct 25, 2019 at 21:07