Skip to content

Instantly share code, notes, and snippets.

View matt5346's full-sized avatar
🎯
Focusing

Matt matt5346

🎯
Focusing
View GitHub Profile
@matt5346
matt5346 / only mobile owl carousel
Created November 17, 2019 02:39
only mobile owl carousel
<?php if ( have_posts() ) : query_posts('p=1');
while (have_posts()) : the_post(); ?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php the_post_thumbnail(array(100, 100)); ?>
<?php endwhile; endif; wp_reset_query(); ?>
function heightAdapt() {
$('.header').css('height', $(window).height());
}
heightAdapt();
$(window).resize(function() {
heightAdapt();
});