• Hi all
    I’ve attached this to functions.php to view random events in Home Page, but I view also past events. Can you help me?

    add_action( ‘pre_get_posts’, ‘random_posts’ );
    function random_posts( $query ) {
    if ( $query->is_home() && !$query->is_paged() && $query->is_main_query() ) {
    $query->set( ‘orderby’, ‘rand’ );
    }
    }

    (http://lnx.arte.go.it/wordpress/)

The topic ‘Random Events in Home Page’ is closed to new replies.