aioseo_import_seopress_posts_per_action

aioseo_import_seopress_posts_per_action

Hook Type: filter

See hook in core

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

apply_filters('aioseo_import_seopress_posts_per_action') is found 1 times:

  • /app/Common/ImportExport/SeoPress/PostMeta.php line 67
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    *
     * @return void
     */
    public function importPostMeta() {
        $postsPerAction  = apply_filters( 'aioseo_import_seopress_posts_per_action', 100 );
        $publicPostTypes = implode( "', '", aioseo()->helpers->getPublicPostTypes( true ) );
        $timeStarted     = gmdate( 'Y-m-d H:i:s', aioseo()->core->cache->get( 'import_post_meta_seopress' ) );
     
        $posts = aioseo()->core->db
            ->start( 'posts as p' )
            ->select( 'p.ID, p.post_type' )