• Resolved Wonderm00n

    (@wonderm00n)


    Hi there,

    I have a plugin where I would like to access the All In One SEO title and description if they are filled in.

    Is there any function of your plugin I can call to get just this?

    Example. I’m already doing this for “SunHeading” plugin, as showned bellow:
    if ($fb_show_subheading==1) {
    @include_once(ABSPATH . ‘wp-admin/includes/plugin.php’);
    if (is_plugin_active(‘subheading/index.php’)) {
    if (function_exists(‘get_the_subheading’)) {
    $fb_title.=’ – ‘.get_the_subheading();
    }
    }
    }

    Where “get_the_subheading” is the function I call to get the value. Do you have anything similar on your plugin?

    Thanks in advance.

    http://wordpress.org/extend/plugins/all-in-one-seo-pack/

Viewing 1 replies (of 1 total)
  • wonderm00n,

    If you look through the plugin you’ll find some hooks for this such as aioseop_description; there isn’t currently a hook to get the title in All in One SEO Pack in all cases, but there are a few for specific cases, as well as some functions in the plugin to do so.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: All in One SEO Pack] Integration of my plugin with your "AIOSEO"’ is closed to new replies.