HEX
Server: Apache
System: Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux
User: ws67301310 (67301310)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /homepages/4/d4297730999/htdocs/wordpress/wp-content/kamini-wp copy/bxslider/bxslider copy.php
<?php

// WP_Query arguments
$args = array (
	'order'                  => 'ASC',
	'orderby'                => 'menu_order',
	'meta_query'             => array(
		array(
			'key'       => 'include_in_homepage_slider',
		),
	),
);

// The Query
$query = new WP_Query( $args );

// The Loop
if ( $query->have_posts() ) {
	echo '<ul class="bxslider">';
	while ( $query->have_posts() ) {
		$query->the_post();
		echo '<li>' . the_post_thumbnail() . '</li>';
	}
	echo '</ul>';
} else {
	// no posts found
}
/* Restore original Post Data */
wp_reset_postdata();

?>				

<script>
	jQuery(document).ready(function($){
	  $('.bxslider').bxSlider();
	});
</script>