function abu_anas_post_slider() { ob_start(); $args = array( 'post_type' => 'post', 'posts_per_page' => 4, 'ignore_sticky_posts' => true, ); $query = new WP_Query($args); if ($query->have_posts()) { echo '
'; } else { echo 'لا توجد مقالات.
'; } wp_reset_postdata(); return ob_get_clean(); } add_shortcode('abu_anas_slider', 'abu_anas_post_slider');