Atahualpa add meta keywords and description
You have to edit file bfa_meta_tags.php by going to Editor under Appearance :
Comment the code under : // META DESCRIPTION & KEYWORDS Tag for single post pages and static pages
And replace it with one below
// META DESCRIPTION & KEYWORDS Tag for single post pages and static pages:
if ( is_single() OR is_page() ) {
if ( trim($bfa_ata['homepage_meta_description'] ) != "" ) {
echo "<meta name=\"description\" content=\"" .
htmlentities($bfa_ata['homepage_meta_description'],ENT_QUOTES,'UTF-8') . "\" />\n";
}
if ( trim($bfa_ata['homepage_meta_keywords'] ) != "" ) {
echo "<meta name=\"keywords\" content=\"" .
htmlentities($bfa_ata['homepage_meta_keywords'],ENT_QUOTES,'UTF-8') . "\" />\n";
}
/* $bfa_meta_description = get_post_meta($post->ID, 'bfa_ata_meta_description', true);
$bfa_meta_keywords = get_post_meta($post->ID, 'bfa_ata_meta_keywords', true);
if ( $bfa_meta_description != '' ) {
echo "<meta name=\"description\" content=\"" .
htmlentities($bfa_meta_description,ENT_QUOTES,'UTF-8') . "\" />\n";
}
if ( $bfa_meta_keywords != '' ) {
echo "<meta name=\"keywords\" content=\"" .
htmlentities($bfa_meta_keywords,ENT_QUOTES,'UTF-8') . "\" />\n";
} */
}

