2017-01-21 34 views

回答

0

是的,你可以通過se擬合代碼像下面的頭模板,

<?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

相關問題