/ Published in: PHP
Uses action hook of the hybrid theme framework to launch function that modifies the query on the archive page for category 6.\r\n\r\nSorts by the custom field \\"event_date\\" and compares it to the current date.\r\n\r\nBased on goto11\\'s code from the discussion here
Expand |
Embed | Plain Text
/* Custom sorting for Events. */ add_action( 'hybrid_before_content', 'events_sorting' ); function events_sorting() { if ( is_category('6') ) { query_posts('cat=6&meta_key=event_date&meta_compare=>=&meta_value='.$today.'&orderby=meta_value&order=ASC'); } }
You need to login to post a comment.
