function my_page_template_redirect(){
$city = do_shortcode( '[geoip_detect2 property="city.name" lang="ru"]' );
if( $city == 'Санкт-Петербург' ){
wp_redirect( 'http://spb.ru' ) );
exit();
}
}
add_action( 'template_redirect', 'my_page_template_redirect' );
function my_page_template_redirect(){
$city = do_shortcode( '[geoip_detect2 property="city.name" lang="ru"]' );
if( $city == 'Хабаровск' ){
wp_redirect( 'http://khv.ru' ) );
exit();
}
}
add_action( 'template_redirect', 'my_page_template_redirect' );
<?php if ('$post_id=591') : ?>
<?php if ($post_id == 591) : ?>
$cat_id = 0;
switch ($post_id) {
case 591:
$cat_id = 30;
break;
case 852:
$cat_id = 40;
break;
case 87:
$cat_id = 43;
break;
}
$pc = new WP_Query(array('cat' => $cat_id)) // и остальные Ваши параметры запроса
//Дальше сам цикл
add_filter( 'wpcf7_validate_textarea', 'custom_textarea_validation_filter', 20, 2 );
add_filter( 'wpcf7_validate_textarea*', 'custom_textarea_validation_filter', 20, 2 );
function custom_textarea_validation_filter( $result, $tag ) {
if ( 'your-message' == $tag->name ) {
$your_message = isset( $_POST['your-message'] ) ? trim( $_POST['your-message'] ) : '';
if ( strpos($your_message, 'http://') !== false ) {
$result->invalidate( $tag, "Incorrect value" );
}
}
return $result;
}
function exclude_category( $query ) {
if ( !is_admin() && $query->is_home() && $query->is_main_query() ) {
$query->set( 'cat', '-5,-6' );
}
}
add_action( 'pre_get_posts', 'exclude_category' );
я пользуюсь customfieldsuite.com
<?php $fields = CFS()->find_fields( array( 'group_id' => 123 ) ); ?>
array (
0 => 'main',
1 => 'active',
);
<?php if( get_field('enable_sidebar') ): ?>
<?php // do something ?>
<?php endif; ?>