网站+抖音优化

果真没想到(WP7中文网站模版开发中,怎样给通心面加进SEO副标题和关键字?)DSi信息编写,

浏览量:110次

做为两个wordpress中文网站的值班员,都期望他们的中文网站在腾讯或Google浏览器上的名列好。此时,他们除要搞好wordpress中文网站的文本以外,更要对wordpress中文网站搞好有关的SEO强化。在后面的段落中,他们如是说了wordpress中文网站主页的SEO强化,那时,他们再来如是说呵呵wordpress中文网站的通心面网页的SEO强化。

721SEO强化

他们都晓得,通心面的副标题通常都较为短,有的是多于2个字,这很有利于SEO优抖音如何做推广化,因此,他们将为wordpress中文网站的通心面前台介面加进SEO副标题、关键字、叙述机能,这种,他们在加进或修正通心面时,就能为每两个通心面建立SEO副标题、关键字和叙述了。上面,就随我一起来看一看吧。具体文本能观赏我在该站刊登的《什么样给wordpress中文网站的通心面,加进SEO副标题和关键字?》音频。

第二步:加进前台“加进介面”。

给wordpress中文网站的前台的“加进新通心面”介面,减少两个抖音如何做推广SEO配置文档。“加进新通心面”介面预设情况下如下表所示图。

721SEO强化

把上面的标识符,放在wordpress主轴的functions.php文档中。

//给通心面加进 SEO副标题、关键字、叙述//加进网页 装载表头add_action( category_add_form_fields, category_term_field );//分类add_action( post_tag_add_form_fields, c抖音如何做推广ategory_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/ter抖音如何做推广mmeta-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="catego抖音如何做推广ry-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_des抖音如何做推广cription" id="category-term-seo_description"></textarea>;echo </div>;}

此时,他们再到前台去看呵呵“加进新通心面”介面,效果如下表所示图:

721SEO强化

第二步:前台分类“编辑介面”加进SEO配置文档。

预设情况下,wordpress前台的分类编辑介面如下表所示图这种。

721SEO强化

他们要给这个分类编辑介面加进SEO副标题、关键字、叙述的配置文档。在wordpress主轴的func抖音如何做推广tions.php文档中,放入如下表所示标识符:

//分类扩展重要信息 编辑介面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_no抖音如何做推广nce_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 clas抖音如何做推广s="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 <text抖音如何做推广area name="category_term_des" id="category-term-des">.$category_des.</textarea>;echo </td>;echo </tr>;}

他们再到前台的通心面编辑介面看呵呵,效果如下表所示图:

721SEO强化

第三步:加进“保存数据”的标识符。

他们在wordpress中文网站前台的通心面介面加进或修正数据后,他们还需要对它们进行保存,因此,他们需要func抖音如何做推广tions.php文档加进如下表所示这段保存数据的标识符:

//保存数据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_f抖音如何做推广ield_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{u抖音如何做推广pdate_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_keyword抖音如何做推广s, $category_keywords );}if( === $category_des){delete_term_meta( $term_id, category_seo_des );}else{update_term_meta( $term_id, category_seo_des, $category_des );}}

通过上面几步,他们就为他们的wordpress中文网站的通心面加进了SE抖音如何做推广O副标题、关键字、叙述的机能,以后,他们在加进通心面时,填写这些重要信息,然后,再在前台模版的头部调用,就能实现wordpress中文网站通心面网页的SEO强化了。

举报/反馈

[声明]本网转载网络媒体稿件是为了传播更多的信息,此类稿件不代表本网观点,本网不承担此类稿件侵权行为的连带责任。故此,如果您发现本网站的内容侵犯了您的版权,请您的相关内容发至此邮箱【admin@admin.com】,我们在确认后,会立即删除,保证您的版权。