Skip to content

Instantly share code, notes, and snippets.

View colinoakes's full-sized avatar

Colin Oakes colinoakes

View GitHub Profile
@nciske
nciske / example_widget_title_filter.php
Created September 19, 2015 02:49
Quick filter to allow you to add a "note" to the widget title that doesn’t display on the front end.
<?php
add_filter( 'widget_title', 'example_widget_title_filter' );
function example_widget_title_filter( $title ){
if( is_admin() )
return;
if( strpos( $title, '|') !== false ){