Advertisement
Guest User

Functions.php

a guest
Aug 22nd, 2012
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php
  2.  
  3. if ( function_exists('register_sidebars') )
  4.     register_sidebar();
  5.  
  6. // REMOVER VERSÃO DO WP
  7. function remover_versao() {
  8.      return '';
  9. }
  10. add_filter('the_generator', 'remover_versao');
  11.  
  12. // SUPORTE A FORMATO DE POSTS
  13. add_theme_support( 'post-formats', array( 'padrao', 'aviso' ) );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement