Syn00123
Syn00123

Reputation: 35

How to add meta description in Wordpress bridge theme

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

Answers (1)

Ahmed Ginani
Ahmed Ginani

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

Related Questions