Select Page

Title for widgets and shortcodes.

Parameters

  1. title – title for widgets and shortcodes.

Usage

<?php
function change_products_of_day_widget_title ( $title ) {
//your code here
    return $title;
}

add_filter( 'products_of_day_widget_title', 'change_products_of_day_widget_title' );
?>