如何创建URL参数以运行自定义查询?

时间:2017-11-10 作者:Michael Rogers

我想按自定义字段进行筛选,我的目标是有url参数链接,如:

domain.com/?custom_field=white
我想我可以通过调整以下示例来创建自定义查询:https://www.advancedcustomfields.com/resources/query-posts-custom-fields/

但是我怎样才能把所有的东西都放在一个站点插件或函数中呢。php那么,当有人单击我的URL参数时,它实际上会运行我的查询?我似乎找不到那一步的答案。

1 个回复
SO网友:Drupalizeme

您要做的是访问query\\u vars并使用它们。

基本代码:

Page to access the fields

$custom_field = get_query_var(\'custom_field\');
var_dump($custom_field);
以及保存魔法的功能或自定义插件:

add_filter( \'query_vars\', \'my_custom_query_vars\' );
function my_custom_query_vars( $vars ) {
    $vars[] = \'custom_field\';
    $vars[] = \'custom_awesome_field\';

    return $vars;
}
yourawesomesite。真棒/?custom\\u字段=白色

string \'white\' (length=5)

结束

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post