Gillar du inte genvägarna i formatet som introducerades i WordPress 4.3? Tycker du att de är lite distraherande? Nyligen frågade en av våra användare oss hur man inaktiverar kortkommandon för formatering i visual editor i WordPress. I den här artikeln visar vi dig hur du inaktiverar kortkommandon för formatering i visual editor i WordPress 4.3.
Vad är genvägar för format och hur använder man dem?
WordPress 4.3 kom med en utvald funktion som anropas formateringsgenvägar. Det tillåter användare att snabbt add vanliga text format utan att ta bort händerna från tangentbordet och utan att skriva någon HTML.
- Om du använder * eller – startar du en oordnad lista.
- Om du använder 1. eller 1) startar du en ordnad lista.
- Om du använder # omvandlas texten till h1. ## för h2, ### för h3 och så vidare.
- Om > används omvandlas det till blockquote.
Video Tutorial
Om du inte gillar videoklippet eller behöver fler instruktioner, fortsätt då att läsa.
Inaktivera genvägar för format i Visual Editor
Vi tycker att genvägar för format är fantastiska, men vissa användare tycker att den här funktionen är lite förvirrande och distraherande.
Om du vill inaktivera formateringsgenvägarna i WordPress följer du instruktionerna under:
Copy and paste den här koden i functions.php-filen i ditt theme eller i ett site-specifikt plugin.
function disable_mce_wptextpattern( $opt ) { if ( isset( $opt['plugins'] ) && $opt['plugins'] ) { $opt['plugins'] = explode( ',', $opt['plugins'] ); $opt['plugins'] = array_diff( $opt['plugins'] , array( 'wptextpattern' ) ); $opt['plugins'] = implode( ',', $opt['plugins'] ); } return $opt; } add_filter( 'tiny_mce_before_init', 'disable_mce_wptextpattern' );
Den här koden tar helt enkelt bort genvägar för textformatering från din WordPress visual editor. Your andra WordPress-kortkommandon kommer att fungera som vanligt.
Vi hoppas att den här artikeln hjälpte dig att inaktivera kortkommandon för formatering i den visuella editorn i WordPress 4.3 och senare versioner. Du kanske också vill se dessa 14 tips för att bemästra WordPress visual editor.
Om du gillade den här artikeln, vänligen prenumerera på vår YouTube-kanal för WordPress video tutorials. Du kan också hitta oss på Twitter och Facebook.
Rudy
Excellent, and thank you! I am going to use this in our numerous WordPress installations. It’s a bit awkward to do it in each theme, but since we use child themes exclusively, it should be a one-time edit. Our staff will be pleased to know these ridiculous shortcuts are going to be disabled.
Rudy
Actually, it was easier to do this as a plugin, as I can then deploy it in multisite to all sites in a network. Tested and working fine. Thanks again!
Bill
Awesome, thanks!
Palla Sridhar
Hello.
I have a different problem. I’m trying to add ”schema markup” code in Text editor of Wordpress post. But when I save it in Text view and go to Visual tab, its getting deleted. Is there a solution for this kind of problem.?
WPBeginner Support
You will have to write it in text editor. Visual editor uses several functions to sanitize the code used by a user in posts.
Administratör
Trish
Thanks for this. I haven’t upgraded yet but I have very specific requirements for my list formatting and the shortcuts would interfere with this.
Adrienne
I love the shortcuts….. makes it fast and easy then going into the text editor and adding all the time.