0
當我在博客上時,這對我來說更容易,想在沒有插件的情況下自動將帖子標題轉換爲元關鍵字。將wordpress文章/頁面標題和標籤轉換爲不帶插件的元關鍵詞
如文章標題:這是我的標題 郵標籤:我的標題,mytitle
關鍵字結果: '這是我的標題,我的頭銜,mytitle'
任何幫助將不勝感激我不是編碼器
當我在博客上時,這對我來說更容易,想在沒有插件的情況下自動將帖子標題轉換爲元關鍵字。將wordpress文章/頁面標題和標籤轉換爲不帶插件的元關鍵詞
如文章標題:這是我的標題 郵標籤:我的標題,mytitle
關鍵字結果: '這是我的標題,我的頭銜,mytitle'
任何幫助將不勝感激我不是編碼器
是的,你可以通過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('«', true, 'right'); ?> <?php bloginfo('name'); ?></title>
謝謝,但沒有工作! 從一個關鍵字生成器插件中取得了這個,如果你可以修改它在沒有插件的情況下工作: – blissyung