Skip to content

Instantly share code, notes, and snippets.

@Bradley-D
Last active December 31, 2015 02:49
Show Gist options
  • Save Bradley-D/7923531 to your computer and use it in GitHub Desktop.
Save Bradley-D/7923531 to your computer and use it in GitHub Desktop.
function execute_php_text_widget( $html ) {
if ( strpos( $html,"<"."?php")!==false ) {
ob_start();
eval( "?".">".$html );
$html=ob_get_contents();
ob_end_clean();
}
return $html;
}
add_filter( 'widget_text','execute_php_text_widget', 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment