wordpress给分类添加:前后台SEO标题、关键词和描述的功能代码

南国老符 南国老符 最后更新于:2021-08-26 浏览:1326

wordpress给分类添加前后台SEO标题、关键词和描述的功能,把如下代码加到模板所在目录的functions.php里即可:


// albert@20210621
// 给分类设置SEO标题、关键词、描述(前台)
//给分类目录添加 SEO标题、关键词、描述
//添加页面 挂载字段
add_action( 'category_add_form_fields', 'category_term_field' );//分类
add_action( 'post_tag_add_form_fields', 'category_term_field' );//标签
function category_term_field() {
wp_nonce_field( basename( __FILE__ ), 'category_term_field_nonce' );
//wp_enqueue_script('dreamc_term_fields', get_template_directory_uri(). '/js/termmeta-upload.js');
echo '<div class="form-field category-term-field">';
echo '<label for="category-term-seo_title">SEO标题</label>';
echo '<input type="text" name="category_term_seo_title" id="category-term-seo_title" value="" />';
echo '</div>';
echo '<div class="form-field category-term-field">';
echo '<label for="category-term-seo_keywords">SEO关键词</label>';
echo '<textarea name="category_term_seo_keywords" id="category-term-seo_keywords"></textarea>';
echo '</div>';
echo '<div class="form-field category-term-field">';
echo '<label for="category-term-seo_description">SEO描述</label>';
echo '<textarea name="category_term_seo_description" id="category-term-seo_description"></textarea>';
echo '</div>';
}

// albert@20210621
// 给分类设置SEO标题,关键词、描述(后台)
// //分类扩展信息 编辑界面
add_action( 'category_edit_form_fields', 'edit_category_term_field' );//分类
add_action( 'post_tag_edit_form_fields', 'edit_category_term_field' );//标签
function edit_category_term_field( $term ) {
//获取数据
$category_title = get_term_meta( $term->term_id, 'category_seo_title', true );
$category_keywords = get_term_meta( $term->term_id, 'category_seo_keywords', true );
$category_des = get_term_meta( $term->term_id, 'category_seo_des', true );
echo '<tr class="form-field category-term-field-wrap">';
echo '<th scope="row"><label for="category-term-title">SEO标题</label></th>';
echo '<td>';
echo wp_nonce_field( basename( __FILE__ ), 'category_term_field_nonce' );
echo '<input type="text" name="category_term_title" id="category-term-title" value="'.$category_title.'"/>';
echo '</td>';
echo '</tr>';
echo '<tr class="form-field category-term-field-wrap">';
echo '<th scope="row"><label for="category-term-keywords">SEO关键词</label></th>';
echo '<td>';
echo '<textarea name="category_term_keywords" id="category-term-keywords">'.$category_keywords.'</textarea>';
echo '</td>';
echo '</tr>';
echo '<tr class="form-field category-term-field-wrap">';
echo '<th scope="row"><label for="category-term-des">SEO描述</label></th>';
echo '<td>';
echo '<textarea name="category_term_des" id="category-term-des">'.$category_des.'</textarea>';
echo '</td>';
echo '</tr>';
}

// albert@20210621
//保存数据
add_action( 'create_category', 'save_category_term_field' );
add_action( 'edit_category', 'save_category_term_field' );//分类
add_action( 'create_post_tag', 'save_category_term_field' );
add_action( 'edit_post_tag', 'save_category_term_field' );//标签
function save_category_term_field( $term_id ) {
if ( ! isset( $_POST['category_term_field_nonce'] ) || ! wp_verify_nonce( $_POST['category_term_field_nonce'], basename( __FILE__ ) ) )
return;
//获取
$category_title = isset( $_POST['category_term_title'] ) ? $_POST['category_term_title'] : '';
$category_keywords = isset( $_POST['category_term_keywords'] ) ? $_POST['category_term_keywords'] : '';
$category_des = isset( $_POST['category_term_des'] ) ? $_POST['category_term_des'] : '';
//更新
if( '' === $category_title){delete_term_meta( $term_id, 'category_seo_title' );}else{update_term_meta( $term_id, 'category_seo_title', $category_title );}
if( '' === $category_keywords){delete_term_meta( $term_id, 'category_seo_keywords' );}else{update_term_meta( $term_id, 'category_seo_keywords', $category_keywords );}
if( '' === $category_des){delete_term_meta( $term_id, 'category_seo_des' );}else{update_term_meta( $term_id, 'category_seo_des', $category_des );}
}



点赞 (0)

收藏 (0)
转载请务必注明: 来源:《建站管家》https://www.df81.com/news/219.html

本站部分信息来源网络,如有侵权,请联系QQ:1062129401删除。

上一篇: wordpress设置统计文章浏览次数的代码

下一篇: wordpress去掉图片宽高及size属性以自适应手机的功能代码

请先登录后,再发表评论 ~ ~
发表评论
评论 (0)

发表帖子
广告位招租( ¥5 / 天 )
点击咨询
最新帖子

南国老符
2025-05-26 16:54
南国老符
2024-09-29 10:29
南国老符
2023-12-15 21:41
广告位招租( ¥5 / 天 )
点击咨询
最近评论

U
user1379
回复:版本号多少?
U
user1379
回复:新版本修复了,下载新版本即可
U
user1379
U
user1304
回复:默认没有这个功能,你可以自行二次开发后期可能会考虑在站群版本上加入此功能及商城功能
Y
yuanis90
回复:后台->语言->全局管理->模型管理->编辑->启用关键词内链即可
Y
yuanis90
回复:后台已经启用了,但是前台产品说明的关分键词还是没有自动链接到,
购买VIP
购买授权
余额充值
发表帖子
客服微信