Sorry, no results for
Try another search or check out one of these fine recent posts.
Try another search or check out one of these fine recent posts.
The default post_type in query_posts is ‘post’, so other post types will not be in the loop unless they are specified. Here is an example of what you could include at the top of your template to include all post types.
global $wp_query;
$p = array(‘post_type’ => array(‘article’, ‘gallery’,'post’,'project’));
$q = array_merge($wp_query->query_vars, $p);
query_posts($q);
I’m sure everyone has run into this problem! You’re looking at a list in your file browser, or a maybe a list of tracks, the filenames or track numbers contain both numbers and characters, and the ordering is against logic: “1,11,2″ instead of “1,2,11″. Often times we will rename filenames to be have a preceding [...]
Adding an audio player to a website can be a simple to complex task, there are many possibilities. For the Into Infinity project, intoinfinity.org, sponsored by Dublab and Creative Commons, we needed a player that would cleanly loop an 8 second audio sample, and be able to play multiple tracks simultaneously. For music.vtechphones.com we needed [...]
© Fuller Web Development. Powered by WordPress using the DePo Skinny Theme.