¿Buscas una forma de mostrar mensajes de ánimo aleatorios cuando se crea una entrada? Este snippet te permitirá mostrar mensajes de ánimo a un autor cuando cree una nueva entrada. Los mensajes se muestran en el campo de título y en el campo de contenido de las nuevas entradas.
Instrucciones:
Todo lo que tienes que hacer es añadir este código al archivo functions.php de tu tema o en un plugin específico del sitio. Puede editar las matrices de mensajes para adaptarlas a sus necesidades.
add_filter( 'default_content', 'writingEncouragement' ); function writingEncouragement( $content ) { global $post_type; if($post_type == "post"){ $encArray = array( "Welcome! Please write a nice and informative page or post!", "Now I know this will be some great piece you're going to write!", "<h1>Don't procrastinate!</h1>", "Finally started, huh? Okay then!", "Blah blah blah. Why don't you write something good this time?", "You were just SO GOOD last time, I hope you measure up now too", "Error 404.... Just kidding", "If you have an SEO plugin, don't forget to add the meta title and meta description information", "You are now participating on what is called "on-site SEO " where you create useful content, put keywords into the URL and optimize your meta information", "This little piece of code can be used to create a wordpress signature or to automatically populate advertisement code" ); $content = $encArray[array_rand($encArray)]; return $content; } } function title_text_input( $title ){ $title = array( "Enter a GOOD, CREATIVE Title!", "404 Post Not Found, I guess you can just rewrite it", "Title rich in KEYWORDS goes here", "Enter Title", "Enter Writing Mode", "How To: Write a GOOD post", "Top 10 whatever" ); $title = $title[array_rand($title)]; return $title; } add_filter( 'enter_title_here', 'title_text_input' );
Nota: Si es la primera vez que añade fragmentos de código en WordPress, consulte nuestra guía sobre cómo copiar / pegar correctamente fragmentos de código en WordPress, para no romper accidentalmente su sitio.
Si te ha gustado este fragmento de código, por favor considere revisar nuestros otros artículos en el sitio como: 30 Maneras de Ganar Dinero Online Blogueando (On the Side) y 100+ estadísticas y hechos interesantes de WordPress.
[…] trick (found at wpsnipp) works by filling in the Title Box and/or the Editor Box with predefined text. And so when an […]