function get_custom_post_extended() {
$args = array('post_type' => 'page');
$customLoop = new WP_Query($args);
$all_post_type = array(
'books',
'reviews',
'news',
'overviews',
'texts',
'interviews',
'chronicles',
'afisha',
);
while ($customLoop->have_posts()) :
$customLoop->the_post();
$get_type = get_post_meta(get_the_ID(), 'custom_type')[0];
if ($get_type != NULL) {
array_push( $all_post_type, $get_type);
}
endwhile;
return $all_post_type;
}
$(".tabs").each(function(){
var tabs = $(this);
tabs.find(".tab").each(function(){
var post=$(this);
var i=0;
post.find(".question").off("click").on("click",function(){
if(i===0){
post.addClass("opened");
i=1;
}else{
post.removeClass("opened");
i=0;
}
return false;
});
});
});
Сайт заливали не через гитхаб. Сделан он был на локалке и на хостинг отправлен в виде архива, они распаковали и всё.А архивчик потерли? Или это стало бесплатным бонусом за упорство и находчивость?
el: '.slidernav'
el: this.querySelector('.slidernav')
<script>
$('.toAnchor').on('click', function () {
$('.navbar-collapse').removeClass('in');
$a = $($(this).attr('href'));
$('html,body').animate({ scrollTop: $a.offset().top - 50}, 500);
return false;
});
</script>
/* bootstrap hack: fix content width inside hidden tabs */
.tab-content > .tab-pane, .pill-content > .pill-pane {
display: block; /* undo display:none */
height: 0; /* height:0 is also invisible */
//overflow: hidden; /* no-overflow */
}
.tab-content > .active, .pill-content > .active {
height: auto; /* let the content decide it */
} /* bootstrap hack end */
<?php if ( $slides = get_field('multiupload') ): ?>
<div class="slick">
<?php foreach ( $slides as $slide ): ?>
<div>
<?php echo $slide['url']; ?>
</div>
<?php endforeach; ?>
</div>
<?php endif; >
<?php
$field = get_post_meta( get_the_ID(), 'multiupload', true );
$image = $field[0];
unset($field[0]);
// get first image in the gallery [1] for second, [2] for third, and so on.
if( $image ) {
echo "<a data-fancybox=\"image\" href='".$image."' class=\"bimgs img-reponsive\"><img src='".$image."'/></a><br><br>";
}
foreach ($field as $imgurl) {
if($imgurl != 'none'){
echo "<a data-fancybox=\"image\" href='".$imgurl."'><img class=\"mimgs\" src='".$imgurl."' height=\"100px\"/></a>";
}
}
?>