Select Page

Filter for widget type.

Parameters

  1. type – widget type can be ‘image’ or ‘text’.

Usage

<?php
function change_compare_products_widget_type ( $type ) {
//your code here
    return $type;
}

add_filter( 'compare_products_widget_type', 'change_compare_products_widget_type' );
?>