how do i change the title/meta tags of the page via code when using all in one SEO?
for example, in the header, lets say I want to use this code:
if (is_page(11))
{
echo '<title>NEW TITLE HERE</title>';
echo '<meta name="description">NEW DESC HERE</meta>';
}
else
{
wp_title();
}