<?php $terms = get_terms( array(
'taxonomy' => 'product_cat',
'hide_empty' => true,
'pad_counts'=> true,
'orderby' => 'name',
'parent' => 0
) ); ?>
<?php if($terms) : ?>
<?php foreach($terms as $term) : ?>
<h2 class="subcategory-title"><a href="<?php echo get_term_link($term->term_id);?>"><?php echo $term->name;?></a></h2>
<!--<div class="subcategory-descripton"><p><?php //if($term->description) : ?><?php //echo $term->description; ?><?php //else: ?>Описание термина таксономии<?php //endif; ?></p></div>-->
<?php // Создаем массив терминов детей текущего термина текущей таксономии
$tax = $term->taxonomy;
$children_terms = get_terms( array(
'taxonomy' => $tax,
'hide_empty' => false,
'parent' => $term->term_id
) ); ?>
<?php if($children_terms): // если есть дочерние категории ?>
<ul><?php foreach ($children_terms as $children_term) : ?>
<?php $link = get_term_link($children_term); ?>
<li style="margin-left: 10px;"><a href="<?php echo $link ?>";><?php echo $children_term->name ?></a></li>
<!--<p class="count"><?php //echo $children_term->count ?></p>-->
<?php endforeach; ?></ul>
<?php endif; // конец условия - если есть дочерние термины таксономии ?>
<?php endforeach; ?>
<?php endif; ?>
<p class="count"><?php if ($term->count > 0) : ?><?php echo $term->count; ?><?php else: ?>0<?php endif; ?></p>
function my_script() {
if ( is_page('contacts') )
wp_enqueue_script('my-script','http://maps.api.2gis.ru/2.0/loader.js?data-id');
}
add_action( 'wp_enqueue_scripts', 'my_script' );
add_filter('clean_url','unclean_url',10,3);
function unclean_url( $good_protocol_url, $original_url, $_context) {
if ( false !== strpos( $original_url, 'data-id' ) ) {
remove_filter( 'clean_url', 'unclean_url', 10, 3 );
$url_parts = parse_url( $good_protocol_url );
return $url_parts['scheme'] . '://' . $url_parts['host'] . $url_parts['path'] . '?pkg=full&lazy=true'."' data-id='dgLoader";
}
return $good_protocol_url;
}
// ******************************************** Плавная прокрутка до якоря
$("a.scroll_to").click(function (event) {
event.preventDefault();
var elementClick = $(this).attr("href");
var destination = $(elementClick).offset().top;
$("html:not(:animated),body:not(:animated)").animate({scrollTop: destination}, 400);
});
Нашел этот плагин.
Называется Attach Post Images.
http://cyriltata.blogspot.ru/2014/03/wordpress-plugin-attach-post-images.html
Кстати, выводить доп фотки можно так:
<?php
$images = twp_get_post_images(get_the_ID());
foreach ($images as $im) {
$thumb_url = wp_get_attachment_image_src($im->id, 'thumbnail-size', true);
?>
<a href="<?php echo $thumb_url[0]; ?>" class="fancybox" rel="group">
<img src="<?php echo $thumb_url[0]; ?>">
</a>
<?php
}
?>
<label>
, событие клика срабатывает два раза, на непосредственно самом <label>
и на <input/>
(но обработчик, который висит на <label>
все равно его ловит, ибо всплытие), поэтому класс active
добавляется и сразу же удаляется. Хотя если кликать непосредственно на сам <input/>
, то клик на <label>
не будет генерироваться, и класс на<label>
будет меняться как и задумано. Выхода я вижу как минимум два:click
, а change
на <input>
и если :checked
то меням классinput.addEventListener(function(e){
if (!e.target.checked) {
$(label).addClass('active');
return;
}
if (e,target.cheked) {
$(label).removeClass('active');
return;
}
});
<label>
<input type="checkbox">
<span>home</span>
</label>
input:checked + span {
color: red;
}