2017-01-21 15 views
0

ブロガーをしていたときにこれは簡単でした。プラグインなしで自動的に投稿タイトルをメタキーワードに変換したいと思います。プラグインなしでメタワードキーワードにワードプレスのポスト/ページのタイトルとタグを変換する

例:記事のタイトル:これは私のタイトルです ポストタグ:私のタイトル、

キーワードの成果 mytitle: 'これは私のタイトル、私のタイトルで、mytitle'

どのような助けが私はコーダーではないと認められるでしょう

答えて

0

はいこれを行うことができます次のようなヘッダーテンプレート内めの設定コード、

<?php 
if (have_posts()) : the_post(); 
$custom_fields = get_post_custom(); 
$custom_meta_description = $custom_fields['meta-description']; 
$custom_meta_keywords = $custom_fields['meta-keywords']; 
if (!empty($custom_meta_description[0])) 
{ 
    echo "<meta http-equiv='description' content='" . $custom_meta_description[0] . "' />\\r\ 
"; 
} 
if (!empty($custom_meta_keywords[0])) 
{ 
    echo "<meta http-equiv='keywords' content='" . $custom_meta_keywords[0] . "' />\\r\ 
"; 
} 
rewind_posts(); 
endif; 
?> 

<title><?php wp_title('&laquo;', true, 'right'); ?> <?php bloginfo('name'); ?></title>

+0

おかげではなく動作しませんでした! は、プラグインなしで動作するように変更することができます: blissyung

関連する問題