Viewing 2 replies - 1 through 2 (of 2 total)
  • Michael Torbert

    (@hallsofmontezuma)

    WordPress Virtuoso

    It’s stored in the post meta in the _aioseop_opengraph_settings field.

    Thread Starter croof001

    (@croof001)

    Perfect, thanks!

    For anyone else out there, here is how I echoed the og:title (if set)

    $key_1_value = get_post_meta( get_the_ID(), ‘_aioseop_opengraph_settings’, true );
    if ( ! empty( $key_1_value ) ) {
    echo reset($key_1_value);
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to echo og:title’ is closed to new replies.