WordPress Anführungszeichen falsch

WordPress setzte bei Code die Anführungszeichen falsch. Aus den normalen geraden ‚ wurden die schrägen `. Deswegen funktionierte Copy & Paste in der Kommandozeile nicht mehr.

Fehlerhafte Anführungszeichen

MariaDB [(none)]> show variables like `%slow%`; 

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '`%slow%`' at line 1

Solution:

WordPress Code

nano wp-content/themes/mantra/functions.php

#at the end of the file

remove_filter( 'the_title', 'wptexturize' );
remove_filter( 'the_content', 'wptexturize' );
remove_filter( 'the_excerpt', 'wptexturize' );
remove_filter( 'comment_text', 'wptexturize' );

Lösung

Durch den oben genannten Code werden die Anführungszeichen wieder korrekt gesetzt und alle Kommandozeilen Befehle funktionieren wunderbar.

MariaDB [(none)]> show variables like '%slow%';
+---------------------+--------------------------------------------------------------------------------------------------------------+
| Variable_name       | Value                                                                                                        |
+---------------------+--------------------------------------------------------------------------------------------------------------+
| log_slow_filter     | admin,filesort,filesort_on_disk,full_join,full_scan,query_cache,query_cache_miss,tmp_table,tmp_table_on_disk |
| log_slow_rate_limit | 1                                                                                                            |
| log_slow_verbosity  |                                                                                                              |
| slow_launch_time    | 2                                                                                                            |
| slow_query_log      | OFF                                                                                                          |
| slow_query_log_file | mattionline-slow.log                                                                                         |
+---------------------+--------------------------------------------------------------------------------------------------------------+
6 rows in set (0.01 sec)

Quelle:

https://core.trac.wordpress.org/ticket/17926

Kommentar verfassen

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert

Nach oben scrollen