HTML Tag or Bold keywords to Optimize your WordPress blog for SEO.
Be aware that if you have manually added tags to posts or pages prior to installing this plugin, there is a chance of non-compliant nested
tags being created. For example, if in a post you have created the following html code - <b>We are SEO professionals.</b> and you create
"SEO" as a keyword within this plugin and select it to have a 'b' tag, the following output will result - <b>We are <b>SEO</b> professionals.</b>
We hope to have this issue corrected in future versions.
For Support of this SEO Keyword Plugin
If you have to upgrade manually simply repeat the installation steps and re-enable the plugin.
If installing or upgrading, ALWAYS back up your database first!
bseo_tag_keyword($Text,$ReturnOrEcho); //return as var $ReturnOrEcho = 0; to echo results $ReturnOrEcho = 1
$taggedText = bseo_tag_keyword($Text,0);
bseo_tag_keyword($Text,1);
To use this plugin to evaluate other text portions. For this example, we will use the Snippets plugin:
ob_start();
snippets_value('Bottom_Left_Text');
$Bottom_Left_Text = ob_get_contents();
ob_end_clean();
bseo_tag_keyword($Bottom_Left_Text,1);