WordPress帖子标题将自动添加为标记

时间:2015-09-16 08:24:53

标签: wordpress post tags title

我创建了一个CPT,我需要将帖子标题自动添加为标签。

示例 -

帖子标题:让他们发笑让他们站在一边

标记:让他们发笑让他们站在一边

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

试试这个

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);