Definition:
function twentyten_remove_gallery_css( $css ) {}
Deprecated way to remove inline styles printed when the gallery shortcode is used.
This function is no longer needed or used. Use the use_default_gallery_style filter instead, as seen above.
Parameters
- $css
Return values
returns:The gallery style filter, with the styles themselves removed.
Source code
function twentyten_remove_gallery_css( $css ) { return preg_replace( "#<style type='text/css'>(.*?)</style>#s", '', $css ); }
3109
No comments yet... Be the first to leave a reply!