Enable displaying shortcodes in text widgets
This commit is contained in:
10
admin/hooks/widget-text.php
Normal file
10
admin/hooks/widget-text.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
function sportspress_widget_text( $content ) {
|
||||
if ( ! preg_match( '/\[[\r\n\t ]*(countdown|league-table|events-(calendar|list)|player-(list|gallery))?[\r\n\t ].*?\]/', $content ) )
|
||||
return $content;
|
||||
|
||||
$content = do_shortcode( $content );
|
||||
|
||||
return $content;
|
||||
}
|
||||
add_filter( 'widget_text', 'sportspress_widget_text', 9 );
|
||||
Reference in New Issue
Block a user