'.__("Don't miss anything",'acmephoto').'
'; ?>
$acmephoto_feature_page, 'posts_per_page' => 3, 'post_type' => 'page', 'no_found_rows' => true, 'post_status' => 'publish' ); $slider_query = new WP_Query( $acmephoto_child_page_args ); if ( !$slider_query->have_posts() ){ $acmephoto_child_page_args = array( 'page_id' => $acmephoto_feature_page, 'posts_per_page' => 1, 'post_type' => 'page', 'no_found_rows' => true, 'post_status' => 'publish' ); $slider_query = new WP_Query( $acmephoto_child_page_args ); } $bg_image_style = 'height:'.$acmephoto_feature_height."vh;"; if ($slider_query->have_posts()): while ($slider_query->have_posts()): $slider_query->the_post(); if (has_post_thumbnail()) { $image_url = wp_get_attachment_image_src(get_post_thumbnail_id(), 'full'); } else { $image_url[0] = get_template_directory_uri() . '/assets/img/no-image-avalable.png'; } $bg_image_style .= 'background-image:url(' . esc_url( $image_url[0] ) . ');background-repeat:no-repeat;background-size:cover;background-attachment:scroll;background-position: center;'; ?>