I have been trying various codes to try and get the All In One SEO title into the sidebar for my Add to Any code to work. I have to use a custom url for some of my other pages that change the url. So far, I have tried this:
$SeoTitle= get_post_meta(2, '_aioseop_title', TRUE);
if (get_post_meta($post->ID, '_aioseop_title', TRUE) != '') {
$SeoTitle = get_post_meta($post->ID, '_aioseop_title', TRUE);
}
echo $SeoTitle;
which doesn't echo anything. I am guessing it doesn't work because it can't access the post meta data in the sidebar. How do i get this working.
Thanks for your help!!