ajouter un texte par d c3 a9faut sur toutes vos publications wordpress

Solutions on MaxInterview for ajouter un texte par d c3 a9faut sur toutes vos publications wordpress by the best coders in the world

showing results for - "ajouter un texte par d c3 a9faut sur toutes vos publications wordpress"
Giorgia
09 Oct 2016
1<?php
2add_filter( 'default_content', 'my_editor_content' );
3function my_editor_content( $content ) {
4$content = "This is some custom content I'm adding to the post editor because I hate re-typing it.";
5return $content;
6}
7?>
similar questions