What is alternative for html_output?
-
Hi, we were using html_output() to get all the tags generated by the SEO Framework 4.0, but it seems that the function is deprecated in 4.2 with no alternative. Should I use individual functions like get_generated_open_graph_description(), etc. to get what html_output() used to output?
My current codes are as follows, and I was wondering how best to change them so that they are compatible with SEO Framework 4.2.
if (function_exists(‘the_seo_framework’)) {
ob_start();
the_seo_framework()->html_output();
$meta .= ob_get_contents();
return ob_get_clean();
}The page I need help with: [log in to see the link]
- The topic ‘What is alternative for html_output?’ is closed to new replies.