Documentation

wph/components/rewrite-default/html_replacements

Posted in: Getting Started (4) Plugin Options Explained (35) Actions / Filters (30) How To (14)      Code Example (15)  

This functionality is available for PRO version.

Name: wph/components/rewrite-default/html_replacements
Type: Filter
Arguments: $status

This filter can be used to disable the HTML Replacements on the default rewrite-default module. Keep in mind that this run if there are actual Replacements pair saved.


        add_filter( 'wph/components/rewrite-default/html_replacements', 'wph_components_rewrite-_efault_html_replacements' ); 
        function wph_components_rewrite-_efault_html_replacements( $status )
            {
                
                $status = FALSE;
                
                return $status;
                   
            }
Share on FacebookShare on Google+Tweet about this on TwitterShare on LinkedIn
Scroll to top