I had a template in wordpress where the descriptions of the articles mostly videos, I wrote them in a personalized metabox. For various reasons I had to change to another template which does not include metaboxes. Logically the descriptions of more than 4,000 entries do not appear but I have managed to show them in each of the entries with this code:
<?php $desc = get_post_meta($post->ID, 'rrt_desc', true); if(!empty($desc)) {
echo '<p class="description">'.$desc.'</p>';
} else { } ?>
So far so good, but the problem is that when I enter Bing - > seo analyzer tells me: La descripción es demasiado larga o demasiado corta
. Regardless of how many words there are.
The question is how can I do it so that I recognize that there is a description? In the rest of the entries in which there is no metabox, it tells me that there is no problem but none but 4000 entries in which I wrote the descriptions in the metabox if it gives me problems. In fact before they appeared in the first search results and now most do not appear.
Maybe you know some way to be able to import all those descriptions and insert them into the normal wordpress edition.