Reputation: 35
I have wordpress theme. When I add meta description in header.php by wordpress dashboard editor then its not updated always showed "The connection was reset"
meta syntex
<meta name="description" content="......................................" />
Upvotes: 0
Views: 538
Reputation: 6650
Add meta description like the following in your functions.php
function hook_meta() {
?>
<meta name="description" content="......................................" />
<?php
}
add_action('wp_head', 'hook_meta');
Upvotes: 2