| Current Path : /home/bechata/mp/wp-content/uploads/2022/ejn73c/ |
| Current File : /home/bechata/mp/wp-content/uploads/2022/ejn73c/filters.php.tar |
home/bechata/mp/wp-content/plugins/shortcodes-ultimate/includes/filters.php 0000666 00000002332 15175406622 0023260 0 ustar 00 <?php
/**
* Filters.
*
* @since 5.0.4
* @package Shortcodes_Ultimate
* @subpackage Shortcodes_Ultimate/includes
*/
/**
* Disable wptexturize filter for nestable shortcodes.
*
* @since 5.0.4
* @param array $shortcodes Shortcodes to not texturize.
* @return array Shortcodes to not texturize.
*/
function su_filter_disable_wptexturize( $shortcodes ) {
$prefix = su_get_shortcode_prefix();
$exclude = array(
$prefix . 'spoiler',
$prefix . 'row',
$prefix . 'column',
$prefix . 'list',
$prefix . 'note',
$prefix . 'box',
$prefix . 'quote',
);
return array_merge( $shortcodes, $exclude );
}
/**
* Custom formatting filter.
*
* @since 5.0.4
* @param string $content
* @return string Formatted content with clean shortcodes content.
*/
function su_filter_custom_formatting( $content ) {
$replacements = array(
'<p>[' => '[',
']</p>' => ']',
']<br />' => ']',
);
return strtr( $content, $replacements );
}
/**
* Simple filter to apply the_content filters.
*
* @since 5.8.1
* @param string $content Raw content
* @return string Parsed content
*/
function su_filter_the_content( $content ) {
return apply_filters( 'the_content', $content );
}