您要做的是访问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)