My operating system: Windows 7 Home Premium SP1 64-bit
Hello,
I'm currently looking for a way to replace an opening parenthesis by an opening parenthesis with a space directly after.
Now this would be an easy search + replace action. No expressions needed.
However, if possible, I'd like to skip the opening parenthesis already containing a space directly after.
As an example:
- Code: Select all
remove_filter('term_description', 'wpautop');
to
- Code: Select all
remove_filter( 'term_description', 'wpautop');
or preferably
- Code: Select all
remove_filter( 'term_description', 'wpautop' );
I've been trying to solve this using Google, the search function, and Expresso. Unfortunately without any luck thus far.
Would someone be able to assist here perhaps?
Best Regards,
Cor

