プラグインSEO関連

ワードプレスでのメタディスクリプションについて

ワードプレスでSEO対策として入れられているプラグインで多いのは「All in One SEO Pack」だと思うけど

弊社では基本導入していない。SNS関連とかAMPとかXMLやら便利で豊富な機能があるが、META description(メタディスクリプション)をいじりたいから。

 

基本クライアントは詳しくないし設定もしたくないと思うので、設定がない場合でも極力最善の状態にすべきである。

で「Meta Manager」をカスタマイズしてる。他のSEO設定はテーマで対応可能だし。

ただMeta Managerそのままだと納得できない。カスタム分類とか。

ので↓

添付ファイルページとか日付アーカイブ・404はnoindex

メタ情報の重複を極力避ける(制定がない場合も、ページネーション時も)

カスタム分類に極力対応

でこうなった。↓ カスタム投稿アーカイブのときの設定してないかも時間あるとき見直します。

 

<?php
/**
* @package Meta Manager
* @version 1.0.8
*/
/*
Plugin Name: Meta Manager
Plugin URI: http://www.warna.info/
Description: Outputs meta description and meta keywords in the element head.
Author: Hitoshi Omagari
Version: 1.0.8
Author URI: http://www.warna.info/
*/

class Meta_Manager {
var $default = array(
‘includes_taxonomies’ => array(),
‘excerpt_as_description’ => true,
‘include_term’ => true,
);

var $setting;
var $term_keywords;
var $term_description;

public function __construct() {
if ( is_admin() ) {
add_action( ‘add_meta_boxes’ , array( &$this, ‘add_post_meta_box’ ), 10, 2 );
add_action( ‘wp_insert_post’ , array( &$this, ‘update_post_meta’ ) );
add_action( ‘admin_menu’ , array( &$this, ‘add_setting_menu’ ) );
add_action( ‘admin_print_styles-settings_page_meta-manager’, array( &$this, ‘print_icon_style’ ) );
add_action( ‘plugins_loaded’ , array( &$this, ‘update_settings’ ) );
add_filter( ‘plugin_action_links’ , array( &$this, ‘plugin_action_links’ ), 10, 2 );
add_action( ‘admin_print_styles-post.php’ , array( &$this, ‘print_metabox_styles’ ) );
add_action( ‘admin_print_styles-post-new.php’ , array( &$this, ‘print_metabox_styles’ ) );
register_deactivation_hook( __FILE__ , array( &$this, ‘deactivation’ ) );
}

add_action( ‘wp_loaded’, array( &$this, ‘taxonomy_update_hooks’ ), 9999 );
add_action( ‘wp_head’, array( &$this, ‘output_meta’ ), 0 );

$this->term_keywords = get_option( ‘term_keywords’ );
$this->term_description = get_option( ‘term_description’ );
if ( ! $this->setting = get_option( ‘meta_manager_settings’ ) ) {
$this->setting = $this->default;
}

}

public function taxonomy_update_hooks() {
$taxonomies = get_taxonomies( array( ‘public’ => true, ‘show_ui’ => true ) );
if ( ! empty( $taxonomies ) ) {
foreach ( $taxonomies as $taxonomy ) {
add_action( $taxonomy . ‘_add_form_fields’, array( $this, ‘add_keywords_form’ ) );
add_action( $taxonomy . ‘_edit_form_fields’, array( &$this, ‘edit_keywords_form’ ), 0, 2 );
add_action( ‘created_’ . $taxonomy, array( &$this, ‘update_term_meta’ ) );
add_action( ‘edited_’ . $taxonomy, array( &$this, ‘update_term_meta’ ) );
add_action( ‘delete_’ . $taxonomy, array( &$this, ‘delete_term_meta’ ) );
}
}
}

public function plugin_action_links( $links, $file ) {
$status = get_query_var( ‘status’ ) ? get_query_var( ‘status’ ) : ‘all’;
$paged = get_query_var( ‘paged’ ) ? get_query_var( ‘paged’ ) : 1;
$s = get_query_var( ‘s’ );
$this_plugin = plugin_basename(__FILE__);
if ( $file == $this_plugin ) {
$link = trailingslashit( get_bloginfo( ‘wpurl’ ) ) . ‘wp-admin/options-general.php?page=meta-manager.php’;
$tax_regist_link = ‘<a href=”‘ . $link . ‘”>’ . __( ‘Settings’ ) . ‘</a>’;
array_unshift( $links, $tax_regist_link ); // before other links
$link = wp_nonce_url( ‘plugins.php?action=deactivate&amp;plugin=’ . $this_plugin . ‘&amp;plugin_status=’ . $status . ‘&amp;paged=’ . $paged . ‘&amp;deloption=1&amp;s=’ . $s, ‘deactivate-plugin_’ . $this_plugin );
$del_setting_deactivation_link = ‘<a href=”‘ . $link . ‘”>設定を削除して停止</a>’;
array_push( $links, $del_setting_deactivation_link );
}
return $links;
}

public function deactivation() {
if ( isset( $_GET[‘deloption’] ) && $_GET[‘deloption’] ) {
delete_option( ‘meta_keywords’ );
delete_option( ‘meta_description’ );
delete_option( ‘meta_manager_settings’ );
delete_post_meta_by_key( ‘_keywords’ );
delete_post_meta_by_key( ‘_description’ );
}
}

public function add_keywords_form() {
?>
<div class=”form-field”>
<label for=”meta_keywords”>メタキーワード</label>
<textarea name=”meta_keywords” id=”meta_keywords” rows=”3″ cols=”40″></textarea>
</div>
<div class=”form-field”>
<label for=”meta_description”>メタディスクリプション</label>
<textarea name=”meta_description” id=”meta_description” rows=”5″ cols=”40″></textarea>
<p>300字以内。キーワードをなるべく多く使い、文の先頭の方へ、PR文として自然に使いましょう。<br>改行はせず、120字、300字で区切ってもおかしくない文にしましょう。</p>
<p>文字数カウント:<span class=”count”>0</span>字</p>
<script type=”text/javascript”>$(function(){$(‘#meta_description’).bind(‘keydown keyup keypress change’,function(){var thisValueLength = $(this).val().length;$(‘.count’).html(thisValueLength);});});</script>
</div>
<?php
}

public function edit_keywords_form( $tag ) {
?>
<tr class=”form-field”>
<th scope=”row” valign=”top”><label for=”meta_keywords”>メタキーワード</label></th>
<td><input type=”text” name=”meta_keywords” id=”meta_keywords” size=”40″ value=”<?php echo isset( $this->term_keywords[$tag->term_id] ) ? esc_html( $this->term_keywords[$tag->term_id] ) : ”; ?>” />
</tr>
<tr class=”form-field”>
<th scope=”row” valign=”top”><label for=”meta_description”>メタディスクリプション</label></th>
<td><textarea name=”meta_description” id=”meta_description” cols=”40″ rows=”5″><?php echo isset( $this->term_description[$tag->term_id] ) ? esc_html( $this->term_description[$tag->term_id] ) : ”; ?></textarea>
<p>300字以内。キーワードをなるべく多く使い、文の先頭の方へ、PR文として自然に使いましょう。<br>改行はせず、120字、300字で区切ってもおかしくない文にしましょう。</p>
<p>文字数カウント:<span class=”count”>0</span>字</p>
<script type=”text/javascript”>$(function(){$(‘#meta_description’).bind(‘keydown keyup keypress change’,function(){var thisValueLength = $(this).val().length;$(‘.count’).html(thisValueLength);});});</script>
</tr>
<?php
}

public function update_term_meta( $term_id ) {
if ( isset( $_POST[‘meta_keywords’] ) ) {
$post_keywords = stripslashes_deep( $_POST[‘meta_keywords’] );
$post_keywords = $this->get_unique_keywords( $post_keywords );
if ( ! isset( $this->term_keywords[$term_id] ) || $this->term_keywords[$term_id] != $post_keywords ) {
$this->term_keywords[$term_id] = $post_keywords;
update_option( ‘term_keywords’, $this->term_keywords );
}
}

if ( isset( $_POST[‘meta_description’] ) ) {
$post_description = stripslashes_deep( $_POST[‘meta_description’] );
if ( ! isset( $this->term_description[$term_id] ) || $this->term_description[$term_id] != $post_description ) {
$this->term_description[$term_id] = $post_description;
update_option( ‘term_description’, $this->term_description );
}
}
}

public function delete_term_meta( $term_id ) {
if ( isset( $this->term_keywords[$term_id] ) ) {
unset( $this->term_keywords[$term_id] );
update_option( ‘term_keywords’, $this->term_keywords );
}
if ( isset( $this->term_description[$term_id] ) ) {
unset( $this->term_description[$term_id] );
update_option( ‘term_description’, $this->term_description );
}
}

public function add_post_meta_box( $post_type, $post ) {
$post_type_obj = get_post_type_object( $post_type );
$output_flag = apply_filters( ‘meta_manager_meta_box_display’, true, $post_type, $post );
if ( $post_type_obj && $post_type_obj->public && $output_flag ) {
add_meta_box( ‘post_meta_box’, ‘メタ情報’, array( &$this, ‘post_meta_box’ ), $post_type, ‘normal’, ‘high’);
}
}

public function post_meta_box() {
global $post;
$post_keywords = get_post_meta( $post->ID, ‘_keywords’, true ) ? get_post_meta( $post->ID, ‘_keywords’, true ) : ”;
$post_description = get_post_meta( $post->ID, ‘_description’, true ) ? get_post_meta( $post->ID, ‘_description’, true ) : ”;
?>
<dl>
<dt>メタキーワード</dt>
<dd><input type=”text” name=”_keywords” id=”post_keywords” size=”100″ value=”<?php echo esc_html( $post_keywords ); ?>” /></dd>
<dt>メタディスクリプション</dt>
<dd><textarea name=”_description” id=”post_description” cols=”100″ rows=”3″><?php echo esc_html( $post_description ); ?></textarea>
<p>300字以内。キーワードをなるべく多く使い、文の先頭の方へ、PR文として自然に使いましょう。<br>改行はせず、120字、300字で区切ってもおかしくない文にしましょう。</p>
<p>文字数カウント:<span class=”count”>0</span>字</p>
<script type=”text/javascript”>$(function(){$(‘#post_description’).bind(‘keydown keyup keypress change’,function(){var thisValueLength = $(this).val().length;$(‘.count’).html(thisValueLength);});});</script></dd>
</dl>
<?php
}

public function print_metabox_styles() {
?>
<style type=”text/css” charset=”utf-8″>
#post_keywords,
#post_description {
width: 98%;
}
</style>
<?php
}

public function update_post_meta( $post_ID ) {
if ( defined( ‘DOING_AUTOSAVE’ ) && DOING_AUTOSAVE ) { return; }
if ( isset( $_POST[‘_keywords’] ) ) {
$post_keywords = stripslashes_deep( $_POST[‘_keywords’] );
$post_keywords = $this->get_unique_keywords( $post_keywords );
update_post_meta( $post_ID, ‘_keywords’, $post_keywords );
}
if ( isset( $_POST[‘_description’] ) ) {
$post_keywords = stripslashes_deep( $_POST[‘_description’] );
update_post_meta( $post_ID, ‘_description’, $post_keywords );
}
}

public function output_meta() {//表示しちゃうよ
global $page, $paged, $post_type,$post,$cat;
$siteinfo = get_bloginfo(‘description’);
$sitename = get_bloginfo(‘name’);
$sitedisc = ‘ | ‘.$siteinfo.’ | ‘.$sitename;
//$postid = ‘No:’.get_the_ID();
$ptitle = wp_title(”,false);
$ptitle = str_replace(‘ ‘, ”,$ptitle);//半角を消す
if (is_page()||is_single()) {
$postsdesc = strip_shortcodes(strip_tags($post->post_content));
$postsdesc = str_replace(array(‘\n’,’&#13;&#10;’), ”, $postsdesc);//改行なし
$postsdesc = wp_html_excerpt($postsdesc, 310, ‘…’ );//htmlタグ改行なし310文字に制限したコンテンツ文

$postsex = str_replace(array(‘\n’,’&#13;&#10;’), ”, $post->post_excerpt);//改行なし
$postsex= wp_html_excerpt($postsex,310, ‘…’ );//htmlタグ改行なし310文字に制限した抜粋文

if (!$postsdesc){$postsdesc = $ptitle;}//コンテンツ文がないときタイトルで代用。カスタム投稿を固定ページに出した時とか
}
$tax_content = category_description();
$tax_content = term_description();
$tax_desc = strip_shortcodes(strip_tags($tax_content));
$tax_desc = wp_html_excerpt( $tax_desc, 300, ‘…’ );//カテゴリ・ターム説明文300文字に制限
if ($tax_desc){$tax_desc .= ‘ | ‘;}

if (is_paged()){$catpage_count=$ptitle.max( $paged, $page ).’ページ目|’;}

$meta = $this->get_meta();
$output = ”;
if ( $meta[‘keywords’] ) {
$output .= ‘<meta name=”keywords” content=”‘ . esc_attr( $meta[‘keywords’] ) . ‘” />’ . “\n”;
}

if( is_archive() ){//カスタム投稿のアーカイブの時
$post_object = get_queried_object();
$post_type = $post_object->name;
$post_obj = get_post_type_object( $post_type );
if( !empty( $post_obj->description ) ){
$post_desc = esc_html( $post_obj->description );
}
$discs = $ptitle.’の記事一覧|’.$post_desc.$meta[‘description’];//カスタム投稿の説明を追加
} else {
$discs = $meta[‘description’];
}
if ($discs) {//description指定有るとき

if(mb_strlen($discs)<=220){$discs .= ‘ | ‘.$siteinfo.’【’.$sitename.’】’;}//220文字より少なければタイトルとか追加
if(is_paged()){
$output .= ‘<meta name=”description” content=”‘.$catpage_count . esc_attr($discs) . ‘” />’ . “\n”;
} else {
$output .= ‘<meta name=”description” content=”‘.esc_attr($discs) . ‘” />’ . “\n”;
}
} else {//description指定なし

if (is_front_page()) {// フロントページ
if ($postsex){ // 抜粋がある場合
$desc_datas = $ptitle.$postsex;
} else {
$desc_datas = $ptitle.$postsdesc;
}

} elseif( is_day()||is_month()||is_year()||is_time()||is_date()||is_attachment()||is_404()){//添付ファイルページとか日付アーカイブ・404はnoindex
$output .= ‘<meta name=”robots” content=”noindex”>’ . “\n”;

} elseif( is_archive()){
$cat_now = get_queried_object();
$now_id = $cat_now->cat_ID;/* カテゴリID */
$parent_id = $now_id[0]->cat_ID;/* 最上位テゴリID */

if ($parent_id !=0) {
$parents_t = get_cat_name($parent_id).’ | ‘;
$root_t = get_cat_name($now_id);
$desc_datas = $catpage_count.$tax_desc.$post_desc.$parents_t.$root_t;
} else {
$root_t = get_cat_name($now_id);
$desc_datas = $catpage_count.$tax_desc.$post_desc.$root_t;
}

}elseif( is_tax() ){
$post_t = ‘ | ‘.esc_html(get_post_type_object(get_post_type())->label );
if (!$tax_desc) {$tax_desc = $ptitle;}
$desc_datas = $catpage_count.$tax_desc.$post_desc.$post_t;

}elseif (is_page()) { //ページ
$parent_id = $post->post_parent;
if ($parent_id) {
$parent_title = get_the_title($parent_id).’ > ‘.$ptitle.’ | ‘;
}
if ($postsex){
if ( $paged >= 2 || $page >= 2){//固定ページ内でページネーション使う時
$desc_datas = $catpage_count.$postsex;
} else {
$desc_datas = $parent_title.$postsex;
}
} else {
if ( $paged >= 2 || $page >= 2){
$desc_datas = $catpage_count.$postsdesc;
} else {
$desc_datas = $parent_title.$postsdesc;
}
}
}elseif (is_single(”)) { //記事詳細の時
if (get_post_type() == ‘post’){
$cats_title = get_the_category();
$category_title = $cats_title[0];
$parents_title = get_category_parents( $category_title->term_id, false, ‘,’, true);
$root_title = get_category_by_slug( $parents_title[0] );
if ($parents_title->name){$$category_t = ‘ | ‘.esc_html( $category_title->name );}
if ($parents_title->name){$parents_t = ‘ | ‘.esc_html( $parents_title->name );}
if ($root_title->name){$root_t = ‘ | ‘.esc_html( $root_title->name );}
}
if (get_post_type() != ‘post’){$post_t = ‘ | ‘.esc_html(get_post_type_object(get_post_type())->label );}

if ($postsex){
$desc_datas = $postsex.$root_t.$parents_t.$category_t.$post_t;
} else {
$desc_datas = $postsdesc.$post_t;
}
}elseif (is_search() ){
$desc_datas = ‘[‘. get_search_query() .’]の検索結果一覧 ’.$catpage_count;
}elseif (is_404() ){
$desc_datas = ‘404|ページが見つかりませんでした。’;
}

if(mb_strlen($desc_datas)<=220){$desc_datas .= ‘ | ‘.$siteinfo.’【’.$sitename.’】’;}
$output .= ‘<meta name=”description” content=”‘.$desc_datas.'” />’ . “\n”;

}//description
echo $output;
}

private function get_meta() {
$meta = array();
$option = array();
$meta[‘keywords’] = get_option( ‘meta_keywords’ ) ? get_option( ‘meta_keywords’ ) : ”;
$meta[‘description’] = get_option( ‘meta_description’ ) ? get_option( ‘meta_description’ ) : ”;
if ( is_singular() ) {
$option = $this->get_post_meta();
} elseif ( is_tax() || is_category() || is_tag() ) {
$option = $this->get_term_meta();
}

if ( ! empty( $option ) && $option[‘keywords’] ) {
$meta[‘keywords’] = $this->get_unique_keywords( $option[‘keywords’], $meta[‘keywords’] );
} else {
$meta[‘keywords’] = $this->get_unique_keywords( $meta[‘keywords’] );
}

if ( ! empty( $option ) && $option[‘description’] ) {
$meta[‘description’] = $option[‘description’];
}
$meta[‘description’] = mb_substr( $meta[‘description’], 0, 340, ‘UTF-8’ );//340文字に制限
return $meta;
}

private function get_post_meta() {
global $post;
$post_meta = array();
$post_meta[‘keywords’] = get_post_meta( $post->ID, ‘_keywords’, true ) ? get_post_meta( $post->ID, ‘_keywords’, true ) : ”;
if ( ! empty( $this->setting[‘includes_taxonomies’] ) ) {
foreach ( $this->setting[‘includes_taxonomies’] as $taxonomy ) {
$taxonomy = get_taxonomy( $taxonomy );
if ( in_array( $post->post_type, $taxonomy->object_type ) ) {
$terms = get_the_terms( $post->ID, $taxonomy->name );
if ( $terms ) {
$add_keywords = array();
foreach ( $terms as $term ) {
$add_keywords[] = $term->name;
}
$add_keywords = implode( ‘,’, $add_keywords );
if ( $post_meta[‘keywords’] ) {
$post_meta[‘keywords’] .= ‘,’ . $add_keywords;
} else {
$post_meta[‘keywords’] = $add_keywords;
}
}
}
}
}
$post_meta[‘description’] = get_post_meta( $post->ID, ‘_description’, true ) ? get_post_meta( $post->ID, ‘_description’, true ) : ”;
if ( $this->setting[‘excerpt_as_description’] && ! $post_meta[‘description’] ) {
if ( trim( $post->post_excerpt ) ) {
$post_meta[‘description’] = $post->post_excerpt;
} else {
$excerpt = apply_filters( ‘the_content’, $post->post_content );
$excerpt = strip_shortcodes( $excerpt );
$excerpt = str_replace( ‘]]>’, ‘]]&gt;’, $excerpt );
$excerpt = strip_tags( $excerpt );
$post_meta[‘description’] = trim( preg_replace( ‘/[\n\r\t ]+/’, ‘ ‘, $excerpt), ‘ ‘ );
}
}
return $post_meta;
}

private function get_term_meta() {
$term_meta = array();
if ( is_tax() ) {
$taxonomy = get_query_var( ‘taxonomy’ );
$slug = get_query_var( ‘term’ );
$term = get_term_by( ‘slug’, $slug, $taxonomy );
$term_id = $term->term_id;
} elseif ( is_category() ) {
$term_id = get_query_var( ‘cat’ );
$term = get_category( $term_id );
} elseif ( is_tag() ) {
$slug = get_query_var( ‘tag’ );
$term = get_term_by( ‘slug’, $slug, ‘post_tag’ );
$term_id = $term->term_id;
}

$term_meta[‘keywords’] = isset( $this->term_keywords[$term_id] ) ? $this->term_keywords[$term_id] : ”;
if ( $this->setting[‘include_term’] ) {
$term_meta[‘keywords’] = $term->name . ‘,’ . $term_meta[‘keywords’];
}
$term_meta[‘description’] = isset( $this->term_description[$term_id] ) ? $this->term_description[$term_id] : ”;
return $term_meta;
}

private function get_unique_keywords() {
$args = func_get_args();
$keywords = array();
if ( ! empty( $args ) ) {
foreach ( $args as $arg ) {
if ( is_string( $arg ) ) {
$keywords[] = trim( $arg, ‘, ‘ );
}
}
$keywords = implode( ‘,’, $keywords );
$keywords = preg_replace( ‘/[, ]*,[, ]*/’, ‘,’, $keywords );
$keywords = explode( ‘,’, $keywords );
foreach ( $keywords as $key => $keyword ) {
if ( ! $keyword ) {
unset( $keywords[$key] );
}
}
$keywords = array_map( ‘trim’, $keywords );
$keywords = array_unique( $keywords );
}
$keywords = implode( ‘,’, $keywords );
return $keywords;
}

public function add_setting_menu() {
add_options_page( ‘Meta Manager’, ‘Meta Manager’, ‘manage_options’, basename( __FILE__ ), array( &$this, ‘setting_page’ ) );
}

public function setting_page() {
$meta_keywords = get_option( ‘meta_keywords’ ) ? get_option( ‘meta_keywords’ ) : ”;
$meta_description = get_option( ‘meta_description’ ) ? get_option( ‘meta_description’ ) : ”;
$taxonomies = get_taxonomies( array( ‘public’ => true, ‘show_ui’ => true ), false );
?>
<div class=”wrap”>
<?php screen_icon( ‘meta_manager-icon32’ ); ?><h2>Meta Manager</h2>
<form action=”” method=”post”>
<?php wp_nonce_field( ‘meta_manager’ ); ?>
<h3>サイトワイド設定</h3>
<table class=”form-table”>
<tr>
<th>共通キーワード</th>
<td>
<label for=”meta_keywords”>
<input type=”text” name=”meta_keywords” id=”meta_keywords” size=”100″ value=”<?php echo esc_html( $meta_keywords ); ?>” />
</label>
</td>
</tr>
<tr>
<th>基本ディスクリプション</th>
<td>
<label for=”meta_description”>
<textarea name=”meta_description” id=”meta_description” cols=”100″ rows=”3″><?php echo esc_html( $meta_description ); ?></textarea>
<p>300字以内。キーワードをなるべく多く使い、文の先頭の方へ、PR文として自然に使いましょう。<br>改行はせず、120字、300字で区切ってもおかしくない文にしましょう。</p>
<p>文字数カウント:<span class=”count”>0</span>字</p>
<script type=”text/javascript”>jQuery(document).ready(function($){$(‘#meta_description’).bind(‘keydown keyup keypress change’,function(){var thisValueLength = $(this).val().length;$(‘.count’).html(thisValueLength);});});</script>
</label>
</td>
</tr>
</table>
<h3>記事設定</h3>
<table class=”form-table”>
<?php if ( $taxonomies ) : $cnt = 1; ?>
<tr>
<th>記事のキーワードに含める分類</th>
<td>
<?php foreach ( $taxonomies as $tax_slug => $taxonomy ) : ?>
<label for=”includes_taxonomies-<?php echo $cnt; ?>”>
<input type=”checkbox” name=”includes_taxonomies[]” id=”includes_taxonomies-<?php echo $cnt; ?>” value=”<?php echo esc_html( $tax_slug ); ?>”<?php echo in_array( $tax_slug, $this->setting[‘includes_taxonomies’] ) ? ‘ checked=”checked”‘ : ”; ?> />
<?php echo esc_html( $taxonomy->labels->singular_name ); ?>
</label>
<?php $cnt++; endforeach; ?>
</td>
</tr>
<?php endif; ?>
<tr>
<th>記事のメタディスクリプション</th>
<td>
<label for=”excerpt_as_description”>
<input type=”checkbox” name=”excerpt_as_description” id=”excerpt_as_description” value=”1″<?php echo $this->setting[‘excerpt_as_description’] ? ‘ checked=”checked”‘ : ”; ?> />
抜粋を記事のディスクリプションとして利用する
</label>
</td>
</tr>
</table>
<h3>タクソノミー設定</h3>
<table class=”form-table”>
<tr>
<th>タクソノミーのメタキーワード</th>
<td>
<label for=”include_term”>
<input type=”checkbox” name=”include_term” id=”include_term” value=”1″<?php echo $this->setting[‘include_term’] ? ‘ checked=”checked”‘ : ”; ?> />
分類名をキーワードに含める
</label>
</td>
</tr>

</table>
<p><input type=”submit” name=”meta_manager_update” value=”<?php _e( ‘Save Changes’ ); ?>” class=”button-primary” /></p>
</form>
<div id=”developper_information”>
<div id=”poweredby”>
<a href=”http://www.prime-strategy.co.jp/” target=”_blank”><img src=”<?php echo preg_replace( ‘/^https?:/’, ”, plugin_dir_url( __FILE__ ) ) . ‘images/ps_logo.png’; ?>” alt=”Powered by Prime Strategy” /></a>
</div>
</div>
</div>
<?php
}

public function update_settings() {
if ( isset( $_POST[‘meta_manager_update’] ) ) {
$post_data = stripslashes_deep( $_POST );
check_admin_referer( ‘meta_manager’ );
$setting = array();
foreach ( $this->default as $key => $def ) {
if ( ! isset( $post_data[$key] ) ) {
if ( $key == ‘includes_taxonomies’ ) {
$setting[‘includes_taxonomies’] = array();
} else {
$setting[$key] = false;
}
} else {
if ( $key == ‘includes_taxonomies’ ) {
$setting[‘includes_taxonomies’] = $post_data[‘includes_taxonomies’];
} else {
$setting[$key] = true;
}
}
}
$meta_keywords = $this->get_unique_keywords( $post_data[‘meta_keywords’] );
update_option( ‘meta_keywords’, $meta_keywords );
update_option( ‘meta_description’, $post_data[‘meta_description’] );
update_option( ‘meta_manager_settings’, $setting );
$this->setting = $setting;
}
}

public function print_icon_style() {
$url = preg_replace( ‘/^https?:/’, ”, plugin_dir_url( __FILE__ ) ) . ‘images/icon32.png’;
?>
<style type=”text/css” charset=”utf-8″>
#icon-meta_manager-icon32 {
background: url( <?php echo esc_url( $url ); ?> ) no-repeat center;
}
#developper_information {
margin: 20px 30px 10px;
}
#developper_information .content {
padding: 10px 20px;
}
#poweredby {
text-align: right;
}
</style>
<?php
}

} // class end
$meta_manager = new Meta_Manager;

いいサイトを、誠心誠意でお応えします。

草津駅すぐのホームページ制作会社 Webサイト・ネットショップ制作/Wordpress/SEO/MEO/VR/デザイン等

ホームページ・Webサイト制作|ネットショップ・ECサイト制作|システム構築| SNSアドバイス・サポート| PR動画・Youtube制作|インタラクティブ動画制作|チラシ・名刺デザイン|SEO・MEO対策|ネット広告|マーケティング|360°パノラマVR制作|Googleストリートビュー (屋内版) 撮影・制作|ドローン撮影|サイト運営・作成アドバイス・レクチャー

〒525-0032 滋賀県 草津市 大路1-1-1 Lty932 5F (草津駅徒歩1分)

Tel: 077-564-4699Mail: hp@webforart.net

電話受付:9:00~18:00 (土日祝除く)

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

CAPTCHA


ホームページ制作、作成のサポートからデザイン等お見積、調査、ご提案、ちょっとしたご相談は無料です。

ご依頼・ご相談、お問合せはお電話かメールにて承っております。お気軽にお問合せください。

ウェブフォーアート 滋賀県-ホームページ制作会社 ウェブフォーアート への電話番号077-564-4699電話受付:9:00~18:00 (土日祝除く)お見積り・ご依頼はこちらお見積り・ご依頼はこちらお見積り・ご依頼はこちら

滋賀県の草津、栗東、南草津、大津、石山、瀬田、守山等、湖南エリアでのご相談、打合せは無料でお伺い致します。

遠方等の地域での打合せも可能ですが、別途交通費を頂く場合がございます。