wordperss的自动标签插件推荐一个。
Auto Tags之前用的这个。但是这个4年前更新的。与新版不兼容。
后台也下架了。而且他的插件。不错,唯独生成的单字母太多了。如 d wang y u
求推荐一个非常实用的。
地图也推荐一个。突然发现好插件都不咋更新。 要钱的,我用的auto tags虽然很老,但是可用。 正好需要,学习路过 自动为WordPress文章添加已使用过的标签
function zm_auto_add_tags() { $post_id = get_the_ID(); if ( $post_id ) : $post_content = get_post( $post_id )->post_content; if ( !empty( $post_content ) ) { $tags = get_tags( array( 'hide_empty' => false ) ); if ( $tags ) { $i = 0; foreach ( $tags as $tag ) { if ( strpos( $post_content, $tag->name ) !== false ) { if ( $i == 6 ) break; // 添加数量 wp_set_post_tags( $post_id, $tag->name, true ); $i++; } } } } endif;}add_action( 'save_post', 'zm_auto_add_tags' );
页:
[1]