Está procurando uma maneira de exibir mensagens aleatórias de incentivo quando uma postagem é criada? Esse snippet permitirá que você exiba mensagens de incentivo a um autor quando ele criar uma nova publicação. As mensagens são exibidas no campo de título e no campo de conteúdo das novas postagens.
Instruções:
Tudo o que você precisa fazer é adicionar esse código ao arquivo functions.php do seu tema ou em um plug-in específico do site. Você pode editar as matrizes de mensagens para atender às suas necessidades.
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' );
Observação: Se esta é a primeira vez que você adiciona trechos de código no WordPress, consulte nosso guia sobre como copiar/colar corretamente trechos de código no WordPress, para não danificar acidentalmente seu site.
Se você gostou desse snippet de código, considere dar uma olhada em nossos outros artigos no site, como: 30 Ways to Make Money Online Blogging (On the Side) e 100+ interesting WordPress stats and facts.
[…] trick (found at wpsnipp) works by filling in the Title Box and/or the Editor Box with predefined text. And so when an […]