Skip to content

Instantly share code, notes, and snippets.

@fdaciuk
Created December 16, 2012 16:26
Show Gist options
  • Save fdaciuk/4309101 to your computer and use it in GitHub Desktop.
Save fdaciuk/4309101 to your computer and use it in GitHub Desktop.
Exemplo de conteúdo após o the_content
<?php
function depois_the_content( $content ) {
global $post;
$content .= 'Isso vai aparecer depois do conteúdo';
return $content;
}
add_filter( 'the_content', 'depois_the_content' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment