हालांकि मैं आपको इससे बचने और इस काम के लिए एक प्लगइन का उपयोग करने की सलाह दूंगा। क्योंकि केवल एक समर्पित प्लगइन एसईओ की मदद कर सकता है। Yoost से "वर्डप्रेस एसईओ" एसईओ के लिए एक महान प्लगइन है।
कहा जा रहा है कि, हेडर में मेटा विवरण और कीवर्ड जोड़ने के लिए कोड है। इसे थीम के फंक्शन्स में डालिए। एफपी फाइल।
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 );