Exemplo n.º 1
0
function get_list_category_theme($product_cat, $archive_template)
{
    if ($archive_template == 'list') {
        if (!($url = wp_get_attachment_url(get_product_category_image_id($product_cat->term_id)))) {
            $url = default_product_thumbnail_url();
        }
        if ($product_cat->parent == 0) {
            $class = 'top-category';
        } else {
            $class = 'child-category';
        }
        $return = '<div class="archive-listing list example ' . $class . '">';
        $return .= '<a href="' . get_term_link($product_cat) . '"><span class="div-link"></span></a>';
        $return .= '<div class="product-image" style="background-image:url(\'' . $url . '\')"></div>';
        $return .= '<div class="product-name">' . $product_cat->name . '</div>';
        $return .= '<div class="product-short-descr"><p>' . c_list_desc($post_id = null, $product_cat->description) . '</p></div></div>';
        return $return;
    }
}
Exemplo n.º 2
0
function get_list_category_theme($product_cat, $archive_template)
{
    if ($archive_template == 'list') {
        if (!($url = wp_get_attachment_url(get_product_category_image_id($product_cat->term_id)))) {
            $url = default_product_thumbnail_url();
        }
        if ($product_cat->parent == 0) {
            $class = 'top-category';
        } else {
            $class = 'child-category';
        }
        $return = '<div class="archive-listing category-' . $product_cat->term_id . ' list ' . $class . '">';
        $return .= '<a href="' . get_term_link($product_cat) . '"><span class="div-link"></span></a>';
        $return .= '<div class="classic-list-image-wrapper"><div class="pseudo"></div><img src="' . $url . '" class="classic-list-image" alt="' . $product_cat->name . '" ></div>';
        $return .= '<div class="product-name">' . $product_cat->name . '</div>';
        $return .= '<div class="product-short-descr"><p>' . c_list_desc($post_id = null, $product_cat->description) . '</p></div></div>';
        return $return;
    }
}