Get all sticky posts from one user through user ID
Copy and paste this function into the function.php file under current theme. // Create a new filtering function that will add where clause to the query function filter_where( $where=”” ) { // posts in the last 30 days $where .= ” AND post_date > ‘” . date(‘Y-m-d’, strtotime(‘-30 days’)) . “‘”; return $where; } Paste … Read more