jquery - show list of posts/thumbs for a specific month or time period. how to implement add/remove filter functions -
jquery - show list of posts/thumbs for a specific month or time period. how to implement add/remove filter functions -
this wordpress. im using jquery already, , found post creates filter: showing posts between date range
this direction sense need follow, unless not. understand filters have never had utilize them , wordpress explanation confusses me. if possible. give hint in loop or how 1 might impliment filter this? think know do, cant wordpress load custom timeframe.please , give thanks you.
i trying create archives page allow me select year , display thumbnails of each month's posts see fit on page. dont want dynamic/drop downwards style wordpress uses. im doing much more graphical , have finish command on , how each month going loaded, placed, , seen. [i have tried every single plugin known man, want command on please, give thanks again!]*
ever heared query_posts() ? allows alter default queries in way want. have @ example,
if ( is_home() ) { query_posts( $query_string . '&cat=13&monthnum=' . date( 'n', current_time( 'timestamp' ) ) ); }
the above illustration show posts category id 13, current month on main page,
. . can used fetch attachment particular post, look,
query_posts( 'attachment_id=5' );
you can bring together multiple queries easily. have here,
query-posts() in detail
jquery wordpress loops filter archive
Comments
Post a Comment