Skip to content

Instantly share code, notes, and snippets.

@mrw4n
mrw4n / gist:3939356
Created October 23, 2012 15:17
Show future posts in wordpress single pages
function allow_future_posts($posts) {
global $wp_query, $wpdb;
if (is_single() && $wp_query->post_count == 0) {
$posts = $wpdb->get_results($wp_query->request);
}
return $posts;
}
add_filter('the_posts', 'allow_future_posts');
@mrw4n
mrw4n / show_days.php
Created October 21, 2012 17:46
PHP Function to show week days range from a given array of week days
function show_days($days = array()) {
$days_array = array(
1 => 'Saturday',
2 => 'Sunday',
3 => 'Monday',
4 => 'Tuesday',
5 => 'Wednesday',
6 => 'Thursday',
7 => 'Friday',
);