$args = array(
'meta_key' => 'foobar',
'posts_per_page' => '-1'
);
$meta_posts = get_posts( $args );
$meta_posts_count = count( $meta_posts );
echo $meta_posts_count;
wp_reset_query();
$args = array(
'post_type' => 'book',
'meta_key' => 'foobar',
'posts_per_page' => '-1'
);
$meta_posts = get_posts( $args );
$meta_posts_count = count( $meta_posts );
echo $meta_posts_count;
wp_reset_query();
jQuery(document).ready(function() {
var id = jQuery("div.vc_tta-panel.vc_active").attr("id");
jQuery(".page-numbers").each(function() {
var href = jQuery(this).attr('href');
if(href && href.indexOf('#') != -1)
href = href.substring(0, href.indexOf('#'));
jQuery(this).attr('href', href + '#' + id);
});
});
var name="admin"
setTimeout(function(){
alert(name);
},1000);
function sayAfter(text,delay){
setTimeout(function(){
alert(text);
},delay);
}
sayAfter("lol",1000);
(function(){
var x, y, z;
//много разного кода, много переменных, которые не нужны в глобальной области видимости
})();
if ($(document).height() <= $(window).height())
$("footer.footer").addClass("navbar-fixed-bottom");