Select Page

Title for widgets and shortcodes.

Parameters

  1. title – Title for widgets and shortcodes.

Usage

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

add_filter( 'ce_widget_title', 'change_ce_widget_title' );
?>