function porto_shortcode_product_category($atts, $content = null)
{
    ob_start();
    if ($template = porto_shortcode_woo_template('porto_product_category')) {
        include $template;
    }
    return ob_get_clean();
}
function porto_shortcode_widget_woo_recent_reviews($atts, $content = null)
{
    ob_start();
    if ($template = porto_shortcode_woo_template('porto_widget_woo_recent_reviews')) {
        include $template;
    }
    return ob_get_clean();
}
function porto_shortcode_best_selling_products($atts, $content = null)
{
    ob_start();
    if ($template = porto_shortcode_woo_template('porto_best_selling_products')) {
        include $template;
    }
    return ob_get_clean();
}