WP tiles template code scrolling problems
-
I am using wp tiles template code on my homepage to pull images from all posts in a specific category and display 4 of them at the bottom of my homepage.
Unfortunately, something isn’t working correctly and I’m unable to smoothly scroll to the bottom of the page. with the wp tiles code active.
<?php $query = new WP_Query(array( 'post_type' => 'post', 'posts_per_page' => 4, 'paged' => 1, 'orderby'=> rand, ) ); // WP Tiles arguments $args = array( 'grids' => plain, 'images_only' => true, 'link' => 'none' //post|thickbox|attachment|none ); // Display the tiles the_wp_tiles( $query, $args ); ?>
If I remove the code I can scroll to the bottom of the page without issue.
The site is at https://defylife.co.uk
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘WP tiles template code scrolling problems’ is closed to new replies.