3, 'columns' => 3, 'child_categories' => 0, 'orderby' => 'name', 'title' => __( 'Product Categories', 'eighteen-tags' ), ) ); echo '
'; do_action( 'eighteen_tags_homepage_before_product_categories' ); echo '

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

'; echo eighteen_tags_do_shortcode( 'product_categories', array( 'number' => intval( $args['limit'] ), 'columns' => intval( $args['columns'] ), 'orderby' => esc_attr( $args['orderby'] ), 'parent' => esc_attr( $args['child_categories'] ), ) ); do_action( 'eighteen_tags_homepage_after_product_categories' ); echo '
'; } } } if ( ! function_exists( 'eighteen_tags_recent_products' ) ) { /** * Display Recent Products * Hooked into the `homepage` action in the homepage template * @since 1.0.0 * @return void */ function eighteen_tags_recent_products( $args ) { if ( is_woocommerce_activated() ) { $args = apply_filters( 'eighteen_tags_recent_products_args', array( 'limit' => 4, 'columns' => 4, 'title' => __( 'Recent Products', 'eighteen-tags' ), ) ); echo '
'; do_action( 'eighteen_tags_homepage_before_recent_products' ); echo '

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

'; echo eighteen_tags_do_shortcode( 'recent_products', array( 'per_page' => intval( $args['limit'] ), 'columns' => intval( $args['columns'] ), ) ); do_action( 'eighteen_tags_homepage_after_recent_products' ); echo '
'; } } } if ( ! function_exists( 'eighteen_tags_featured_products' ) ) { /** * Display Featured Products * Hooked into the `homepage` action in the homepage template * @since 1.0.0 * @return void */ function eighteen_tags_featured_products( $args ) { if ( is_woocommerce_activated() ) { $args = apply_filters( 'eighteen_tags_featured_products_args', array( 'limit' => 4, 'columns' => 4, 'orderby' => 'date', 'order' => 'desc', 'title' => __( 'Featured Products', 'eighteen-tags' ), ) ); echo ''; } } } if ( ! function_exists( 'eighteen_tags_popular_products' ) ) { /** * Display Popular Products * Hooked into the `homepage` action in the homepage template * @since 1.0.0 * @return void */ function eighteen_tags_popular_products( $args ) { if ( is_woocommerce_activated() ) { $args = apply_filters( 'eighteen_tags_popular_products_args', array( 'limit' => 4, 'columns' => 4, 'title' => __( 'Top Rated Products', 'eighteen-tags' ), ) ); echo ''; } } } if ( ! function_exists( 'eighteen_tags_on_sale_products' ) ) { /** * Display On Sale Products * Hooked into the `homepage` action in the homepage template * @since 1.0.0 * @return void */ function eighteen_tags_on_sale_products( $args ) { if ( is_woocommerce_activated() ) { $args = apply_filters( 'eighteen_tags_on_sale_products_args', array( 'limit' => 4, 'columns' => 4, 'title' => __( 'On Sale', 'eighteen-tags' ), ) ); echo '
'; do_action( 'eighteen_tags_homepage_before_on_sale_products' ); echo '

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

'; echo eighteen_tags_do_shortcode( 'sale_products', array( 'per_page' => intval( $args['limit'] ), 'columns' => intval( $args['columns'] ), ) ); do_action( 'eighteen_tags_homepage_after_on_sale_products' ); echo '
'; } } } if ( ! function_exists( 'eighteen_tags_homepage_content' ) ) { /** * Display homepage content * Hooked into the `homepage` action in the homepage template * @since 1.0.0 * @return void */ function eighteen_tags_homepage_content() { while ( have_posts() ) : the_post(); get_template_part( 'content', 'page' ); endwhile; // end of the loop. } } if ( ! function_exists( 'eighteen_tags_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 eighteen_tags_social_icons() { if ( class_exists( 'Subscribe_And_Connect' ) ) { echo '
'; subscribe_and_connect_connect(); echo '
'; } } } if ( ! function_exists( 'eighteen_tags_get_sidebar' ) ) { /** * Display eighteen-tags sidebar * @uses get_sidebar() * @since 1.0.0 */ function eighteen_tags_get_sidebar() { get_sidebar(); } } if ( ! function_exists( 'eighteen_tags_post_thumbnail' ) ) { /** * Display post thumbnail * @var $size thumbnail size. thumbnail|medium|large|full|$custom * @uses has_post_thumbnail() * @uses the_post_thumbnail * @param string $size * @since 1.5.0 */ function eighteen_tags_post_thumbnail( $size ) { if ( has_post_thumbnail() ) { the_post_thumbnail( $size, array( 'itemprop' => 'image' ) ); } } }