Answers for "Ajouter un texte par défaut sur toutes vos publications WordPress"

PHP
0

Ajouter un texte par défaut sur toutes vos publications WordPress

<?php
add_filter( 'default_content', 'my_editor_content' );
function my_editor_content( $content ) {
$content = "This is some custom content I'm adding to the post editor because I hate re-typing it.";
return $content;
}
?>
Posted by: Guest on September-29-2021

Code answers related to "Ajouter un texte par défaut sur toutes vos publications WordPress"

Browse Popular Code Answers by Language