';
if( $beautystore_service_title || $beautystore_service_content ){
echo '
' ;
if( $beautystore_service_title ) echo '
' . esc_html( $beautystore_service_title ) . '
';
if( $beautystore_service_content ) echo '
'.wpautop( esc_html( $beautystore_service_content ) ).'
';
echo '
';
}
$args = array(
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => 3,
'ignore_sticky_posts' => 1
);
$qry = new WP_Query( $args );
?>
have_posts() ){ ?>
have_posts() ){
$qry->the_post();
?>
';
}
?>