Replies: 0
Hi, I wrote this code to exclude articles from a specific category from the featured post slider widget, but it doesn’t work. Do you have any suggestions?
function exclude_category_from_slider($args) {
$exclude = "16";
$args["exclude"] = $exclude;
return $args;
}
add_filter("colormag_featured_posts_slider_widget","exclude_category_from_slider");