organize posts under category; and list all categories on one page
Now how confusing of a title is that?
So; you want to list all of your WordPress posts; sorted by category; and displayed alphabetical .. Check this out
To All My Friends…
Apple is so stupid
So I jailbreak my new iPhone 4 so I can install the netflix iPad app on it; and what do you know the very next day; netflix releases their iPhone app..
Blah… What’s up Netflix? I thought you’d have the iPad and iPhone app out the same day.. Is it an ATT issue? Probably…
WordPress Ping List
List posts from the same category on single sidebar
Seems people actually read this blog; so thought I’d pass this along – How to list posts that are in the same category when you are on a single.php page…
<?php if ( is_category() ) {
global $wp_query;
$current_cat_id = $wp_query->get_queried_object_id(); ?>
<div id="category-posts-<?php echo $current_cat_id; ?>" class="widget widget_recent_entries">
<div class="widget-title"><h3><?php single_cat_title('Recently in '); ?>:</h3></div>
<div class="widget-content">
<ul>
<?php global $post; $cat_posts = get_posts('numberposts=10&category='.$current_cat_id);
foreach($cat_posts as $post) : ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
</div>
</div>
<?php } ?>
This blog’s turning out to be a quick reference wiki for code – wow…
flash…
so I’m using a user uploadable flash animation … either sequence or random order. .. you can use this on your twentyten theme as a flash animation… just the same as the header image; only flash .. we lost individual page interactivity; but it’ll be back soon
drop me a note; I’ll help you set it up.
Yes; for some reason –   works in the post title?
Promise I’m using jParallax in a upcoming project..
promise…
Custom post types…
I never write blog posts; but Custom Post Types – I <3 You!
Lol…
