Support

Account

Home Forums Backend Issues (wp-admin) Exclude posts from main loop based on ACF field value Reply To: Exclude posts from main loop based on ACF field value

  • I have the same problem:

    The meta query is:

    'meta_query' => [
                        'relation' => 'OR',
                        [
                            'key'     => 'font_hide_page',
                            'value'   => [1],
                            'compare' => 'NOT IN',
                        ],
                        [
                            'key'     => 'font_hide_page',
                            'compare' => 'NOT EXISTS',
                        ]
                    ],

    The problem is that the query is very slow ( takes ~7s per query ). If I remove the meta query, the same query executes around than 0.6ms. Can anybody help with optimised way of doing such queries?