Skip to content

Instantly share code, notes, and snippets.

@pedroelsner
Created May 23, 2012 22:48
Show Gist options
  • Save pedroelsner/2778319 to your computer and use it in GitHub Desktop.
Save pedroelsner/2778319 to your computer and use it in GitHub Desktop.
#2 - Plugin WordPress - Hello Word
<?php
/**
* Função que adiciona o texto "Hello World!" ao conteudo do post
*
* @param string $content
* @return string
*/
function hello_world_content_filter ( $content ) {
$content .= '<strong>Hello World!</strong>';
return $content;
}
// Cria o hook para ligar esta função ao filter the_content
add_filter( 'the_content', 'hello_world_content_filter' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment