query_loop_block_query_vars

过滤钩子


apply_filters( 'query_loop_block_query_vars', $query, $block, $page )
参数
  • (array)
    $query
    Array containing parameters for `WP_Query` as parsed by the block context.
    Required:
  • (WP_Block)
    $block
    Block instance.
    Required:
  • (int)
    $page
    Current query’s page.
    Required:
定义位置
  • wp-includes/blocks.php
    , line 1369
引入
6.1.0
弃用

Filters the arguments which will be passed to `WP_Query` for the Query Loop Block.

Anything to this filter should be compatible with the WP_Query API to form
the query context which will be passed down to the Query Loop Block’s children.
This can help, for example, to include additional settings or meta queries not
directly supported by the core Query Loop Block, and extend its capabilities.

Please note that this will only influence the query that will be rendered on the
front-end. The editor preview is not affected by this filter. Also, worth noting
that the editor preview uses the REST API, so, ideally, one should aim to provide
attributes which are also compatible with the REST API, in order to be able to
implement identical queries on both sides.

return apply_filters( 'query_loop_block_query_vars', $query, $block, $page );
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。