3, 'columns' => 3, 'child_categories' => 0, 'orderby' => 'name', 'title' => __( 'Product Categories', 'shop-isle' ), ) ); echo '
'; do_action( 'shop_isle_homepage_before_product_categories' ); echo '

' . esc_attr( $args['title'] ) . '

'; echo do_shortcode( '[product_categories number="' . intval( $args['limit'] ) . '" columns="' . intval( $args['columns'] ) . '" orderby="' . esc_attr( $args['orderby'] ) . '" parent="' . esc_attr( $args['child_categories'] ) . '"]' ); do_action( 'shop_isle_homepage_after_product_categories' ); echo '
'; } } } if ( ! function_exists( 'shop_isle_recent_products' ) ) { /** * Display Recent Products * Hooked into the `homepage` action in the homepage template * * @since 1.0.0 * @return void */ function shop_isle_recent_products( $args ) { if ( is_woocommerce_activated() ) { $args = apply_filters( 'shop_isle_recent_products_args', array( 'limit' => 4, 'columns' => 4, 'title' => __( 'Recent Products', 'shop-isle' ), ) ); echo '
'; do_action( 'shop_isle_homepage_before_recent_products' ); echo '

' . esc_attr( $args['title'] ) . '

'; echo do_shortcode( '[recent_products per_page="' . intval( $args['limit'] ) . '" columns="' . intval( $args['columns'] ) . '"]' ); do_action( 'shop_isle_homepage_after_recent_products' ); echo '
'; } } } if ( ! function_exists( 'shop_isle_featured_products' ) ) { /** * Display Featured Products * Hooked into the `homepage` action in the homepage template * * @since 1.0.0 * @return void */ function shop_isle_featured_products( $args ) { if ( is_woocommerce_activated() ) { $args = apply_filters( 'shop_isle_featured_products_args', array( 'limit' => 4, 'columns' => 4, 'orderby' => 'date', 'order' => 'desc', 'title' => __( 'Featured Products', 'shop-isle' ), ) ); echo ''; } } } if ( ! function_exists( 'shop_isle_popular_products' ) ) { /** * Display Popular Products * Hooked into the `homepage` action in the homepage template * * @since 1.0.0 * @return void */ function shop_isle_popular_products( $args ) { if ( is_woocommerce_activated() ) { $args = apply_filters( 'shop_isle_popular_products_args', array( 'limit' => 4, 'columns' => 4, 'title' => __( 'Top Rated Products', 'shop-isle' ), ) ); echo ''; } } } if ( ! function_exists( 'shop_isle_on_sale_products' ) ) { /** * Display On Sale Products * Hooked into the `homepage` action in the homepage template * * @since 1.0.0 * @return void */ function shop_isle_on_sale_products( $args ) { if ( is_woocommerce_activated() ) { $args = apply_filters( 'shop_isle_on_sale_products_args', array( 'limit' => 4, 'columns' => 4, 'title' => __( 'On Sale', 'shop-isle' ), ) ); echo '
'; do_action( 'shop_isle_homepage_before_on_sale_products' ); echo '

' . esc_attr( $args['title'] ) . '

'; echo do_shortcode( '[sale_products per_page="' . intval( $args['limit'] ) . '" columns="' . intval( $args['columns'] ) . '"]' ); do_action( 'shop_isle_homepage_after_on_sale_products' ); echo '
'; } } } if ( ! function_exists( 'shop_isle_homepage_content' ) ) { /** * Display homepage content * Hooked into the `homepage` action in the homepage template * * @since 1.0.0 * @return void */ function shop_isle_homepage_content() { while ( have_posts() ) : the_post(); get_template_part( 'content', 'page' ); endwhile; // end of the loop. } } if ( ! function_exists( 'shop_isle_social_icons' ) ) { /** * Display social icons * If the subscribe and connect plugin is active, display the icons. * * @link http://wordpress.org/plugins/subscribe-and-connect/ * @since 1.0.0 */ function shop_isle_social_icons() { if ( class_exists( 'Subscribe_And_Connect' ) ) { echo '
'; subscribe_and_connect_connect(); echo '
'; } } } if ( ! function_exists( 'shop_isle_get_sidebar' ) ) { /** * Display sidebar * * @uses get_sidebar() * @since 1.0.0 */ function shop_isle_get_sidebar() { get_sidebar(); } } if ( ! function_exists( 'shop_isle_get_sidebar_shop_archive' ) ) { /** * Display sidebar * * @uses get_sidebar() * @since 1.0.0 */ function shop_isle_get_sidebar_shop_archive() { get_sidebar( 'shop-archive' ); } }