Her ne kadar bundan kaçınmanızı ve bu iş için bir eklenti kullanmanızı tavsiye ederim. Çünkü sadece özel bir eklenti SEO'ya yardımcı olabilir. Yoost "WordPress SEO" SEO için harika bir eklentidir.
Bununla birlikte, üstbilgiye meta açıklama ve anahtar kelimeler ekleme kodu. Bunu temanın function.php dosyasına yapıştırın.
function add_meta_tags() {
global $post;
if ( is_single() ) {
$meta = strip_tags( $post->post_content );
$meta = strip_shortcodes( $post->post_content );
$meta = str_replace( array("\n", "\r", "\t"), ' ', $meta );
$meta = substr( $meta, 0, 125 );
$keywords = get_the_category( $post->ID );
$metakeywords = '';
foreach ( $keywords as $keyword ) {
$metakeywords .= $keyword->cat_name . ", ";
}
echo '<meta name="description" content="' . $meta . '" />' . "\n";
echo '<meta name="keywords" content="' . $metakeywords . '" />' . "\n";
}
}
add_action( 'wp_head', 'add_meta_tags' , 2 );