wp_add_inline_script()
add_action('wp_enqueue_scripts', function() {
wp_enqueue_script( 'my_scripts', get_stylesheet_directory_uri() .'/my_scripts.js' );
wp_add_inline_script( 'my_scripts', '$(\'.selectpicker\').selectpicker();' );
});
/* Получим в HTML коде
<script type='text/javascript' src='http://example.com/wp-content/themes/mytheme/my_scripts.js'></script>
<script type='text/javascript'>
$('.selectpicker').selectpicker();
</script>
*/
$categories = get_the_terms( $post->ID, 'voprosy-types' );
$category_ids = array();
foreach( $categories as $individual_category ) {
$category_ids[] = $individual_category->term_id;
}
$args = array(
'post__not_in' => array( $post->ID ),
'posts_per_page' => '5',
'orderby' => 'rand',
'tax_query' => [
[
'taxonomy' => 'voprosy-types',
'field' => 'id',
'terms' => $category_ids,
]
]
);
$locale = get_locale();
if( $locale == 'uk' ) {
echo do_shortcode( '[contact-form-7 id="420" title="Оформити заявку"]' );
} elseif( $locale == 'ru_RU' ) {
echo do_shortcode( '[contact-form-7 id="419" title="Оформить заявку"]' );
} else {
echo do_shortcode( '[contact-form-7 id="421" title="Make a request"]' );
}
register_taxonomy()
, лучше для каждого типа записи иметь свои таксономии, так вы избежите множества проблем в дальнейшем$post_type = get_post_type();
if ( file_exists( get_theme_file_path( 'templates/archive/archive-' . $post_type . '.php' ) ) ) {
get_template_part( 'templates/archive/archive-' . $post_type );
} else {
get_template_part( 'templates/archive/archive-common' );
}
register_post_type()
тоже есть аргумент rewrite, который тоже используется для построения ссылок$args = [
'post_type' => ['post','service'],
'post__in' => [5,12,2,14,7],
'orderby' => 'post__in',
];
$loop = new WP_Query( $args );
if ( get_post_type() === 'service' ) {
get_template_part( 'templates/archive/archive-service' );
} else {
get_template_part( 'templates/archive/archive-common' );
}
$post_type = get_post_type();
if ( file_exists( get_theme_file_path( 'templates/archive/archive-' . $post_type . '.php' ) ) ) {
get_template_part( 'templates/archive/archive-' . $post_type );
} else {
get_template_part( 'templates/archive/archive-common' );
}
add_filter( 'post_gallery', 'my_gallery_shortcode', 10, 3 );
function my_gallery_shortcode( $output = '', $atts = null, $instance = null ) {
$return = $output; // fallback
// retrieve content of your own gallery function
$my_result = get_my_gallery_content( $atts );
// boolean false = empty, see http://php.net/empty
if( !empty( $my_result ) ) {
$return = $my_result;
}
return $return;
}