extatix
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to modify loop to split posts into groups of threes?@ Mark / t31os
I used the code you provided to split up a query of 100 into parts of 10 for a sliding widget using the jQuery Cycle plugin. There’s just a small problem with it, it serves me an 11th group with no entries.
Forum: Fixing WordPress
In reply to: Splitting up the output of WP_QueryWell, just like this:
http://ww.wp.xz.cn/support/topic/how-to-modify-loop-to-split-posts-into-groups-of-threesCool. Solved.
Forum: Fixing WordPress
In reply to: Which permalink structure/syntax to use?I use /%post_id%/%postname%/
Works fine for pages with sub-pages and has the added benefit (for me) I can use a shortlink for the post like mysite.com/333/ instead of the full mysite.com/333/i-love-custom-taxonomiesForum: Fixing WordPress
In reply to: Adding Multiple Category Dropdowns‘hide_empty’ => 1,
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
was missingForum: Fixing WordPress
In reply to: Adding Multiple Category DropdownsForum: Fixing WordPress
In reply to: front page newsBy changing the query which is used in index.php/home.php
Forum: Fixing WordPress
In reply to: Which permalink structure/syntax to use?Except that the WP Codex says
Starting Permalinks with %category% is strongly not recommended for performance reasons.
Forum: Fixing WordPress
In reply to: Splitting up the output of WP_QueryI’m still not sure where this is going wrong.
Forum: Fixing WordPress
In reply to: Splitting up the output of WP_QueryYes, but all posts are in ONE kid. Sorry 🙂
Forum: Fixing WordPress
In reply to: Splitting up the output of WP_QueryThis way everything is in <div class=”kid”></div>
Forum: Fixing WordPress
In reply to: Splitting up the output of get_postsHm, lemme see if I can get this to work like I want.
I changed the permalink line though.
<a href="<?php echo $post->guid ?>" title="<?php echo $post->post_slug; ?>">Forum: Fixing WordPress
In reply to: Splitting up the output of get_postsGood to see I’m not the only one trying to do this 🙂 I’m getting the same ‘error’ of course, the WP_query isn’t an array.
Forum: Fixing WordPress
In reply to: Splitting up the output of get_postsWonderful! That works, thanks a heep.
Forum: Everything else WordPress
In reply to: Theme specific pluginsAh, good 🙂 Thanks.