‘user_can_richedit’ Breaks Snippets
-
The
user_can_richedit
filter decides whether the Visual/Text editors via TinyMCE can be used in pages. However, if this filter is false, the snippets no longer work.I had to write a little check to exclude the snippets:
if( stripos( $_GET[‘page’], ‘snippet’ ) !== false ) {
return true;
}Can this be fixed?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘‘user_can_richedit’ Breaks Snippets’ is closed to new replies.