Skip to content

Instantly share code, notes, and snippets.

@Dianakc
Created April 25, 2014 18:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Dianakc/56da886ea596bb531ff4 to your computer and use it in GitHub Desktop.
Save Dianakc/56da886ea596bb531ff4 to your computer and use it in GitHub Desktop.
Remove/modifica o widget de Posts Recentes
<?php
add_filter('widget_posts_args','modify_widget');
function modify_widget() {
$r = array( 'cat' => '6' );
return $r;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment