aioseo_disable_shortcode_parsing

aioseo_disable_shortcode_parsing

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: all-in-one-seo-pack.4.8.1.1

apply_filters('aioseo_disable_shortcode_parsing') is found 1 times:

  • /app/Common/Traits/Helpers/Shortcodes.php line 61
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
        return $content;
    }
     
    if ( ! wp_doing_cron() && ! wp_doing_ajax() ) {
        if ( ! $override && apply_filters( 'aioseo_disable_shortcode_parsing', false ) ) {
            return $content;
        }
     
        if ( ! $override && ! aioseo()->options->searchAppearance->advanced->runShortcodes ) {
            return $this->doAllowedShortcodes( $content, $postId );
        }