はいこれを行うことができます次のようなヘッダーテンプレート内めの設定コード、
後
<?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('«', true, 'right'); ?> <?php bloginfo('name'); ?></title>
おかげではなく動作しませんでした! は、プラグインなしで動作するように変更することができます: – blissyung