WordPress post 标题自动添加为标签
WordPress post title to be added automatically as a tag
我创建了一个 CPT,我需要 post 标题自动添加为标签。
例子-
Post title: 逗他们笑让他们站在一边
标签:让他们笑起来让他们站在一边
有什么想法吗?
试试这个
function add_my_tag($id,$post)
{
wp_set_post_tags($id, str_replace(',', ' ', $post->post_title), true); //if last argument is false, this will replace current tags, if it's true, it will append.
}
add_action('publish_your-cpt', 'add_my_tag', 7,2);
我创建了一个 CPT,我需要 post 标题自动添加为标签。
例子-
Post title: 逗他们笑让他们站在一边
标签:让他们笑起来让他们站在一边
有什么想法吗?
试试这个
function add_my_tag($id,$post)
{
wp_set_post_tags($id, str_replace(',', ' ', $post->post_title), true); //if last argument is false, this will replace current tags, if it's true, it will append.
}
add_action('publish_your-cpt', 'add_my_tag', 7,2);