Skip to content

Instantly share code, notes, and snippets.

@wpchannel
wpchannel / filter-wordpress-recent-posts-widget.php
Last active December 12, 2022 08:50
Filter WordPress Recent Posts Widget
function wpc_filter_recent_posts_widget_parameters($params) {
$params['orderby'] = 'date';
$params['tax_query'] = array(
array(
'taxonomy' => 'post_format',
'field' => 'slug',
'terms' => array('post-format-movie', 'post-format-aside'),
'operator' => 'NOT IN'
)
);