我想为来自特定域的所有查询添加查询变量。
例如,mydomain.com和proxydomain.com都显示相同的WordPress网站,但对于通过proxydomain.com访问的用户,我希望能够以不同方式处理他们的查询。
此外,我还想通过proxydomain.com为访问者应用一些不同的CSS样式。
我以为我可以检查query_var并根据该变量的存在来应用类。
答案 0 :(得分:10)
这是要添加到functions.php
文件的代码:
add_filter( 'body_class', 'domain_as_body_class' );
function domain_as_body_class( $classes ) {
$classes[] = sanitize_title( $_SERVER['SERVER_NAME'] );
return $classes;
}
它会将您网站的已清理域(即mydomain-com
或proxydomain-com
)添加为您网页的body
标记的类,以便您可以定位自定义样式的相对类。
<强>更新强>
对于查询,您可以在functions.php
中再次添加一个函数,例如:
function is_proxydomain() {
return 'proxydomain.com' == $_SERVER['SERVER_NAME'];
}
然后在需要查询时使用它:
if( is_proxydomain() ) {
$args = array(
// arguments for proxydomain.com
);
} else {
$args = array(
// arguments for mydomain.com
);
}
$query = new WP_Query( $args );
答案 1 :(得分:1)
第一部分,我喜欢d79的答案。
对于查询,我认为扩展WP_Query类(即WP_Query_Custom)并为每个域创建一个副本会更好。然后,您可以根据functions.php文件中的域加载所需的文件,这样即使您需要添加更多域名,也不需要在将来使用WP_Query_Custom更改您的调用WP_Query_Custom的版本。
//in functions.php
$mydomain = str_replace('.', '_', $_SERVER['SERVER_NAME']);
require_once("path/to/my/classes/$mydomain/WP_Query_Custom.php");
//In each path/to/my/classes/$mydomain/WP_Query_Custom.php
class WP_Query_Custom extends WP_Query {
function __construct( $args = array() ) {
// Force these args
$args = array_merge( $args, array(
'post_type' => 'my_custom_post_type',
'posts_per_page' => -1, // Turn off paging
'no_found_rows' => true // Optimize query for no paging
) );
add_filter( 'posts_where', array( $this, 'posts_where' ) );
parent::__construct( $args );
// Make sure these filters don't affect any other queries
remove_filter( 'posts_where', array( $this, 'posts_where' ) );
}
function posts_where( $sql ) {
global $wpdb;
return $sql . " AND $wpdb->term_taxonomy.taxonomy = 'my_taxonomy'";
}
}
示例类是从extending WP_Query
复制的