akamaddisk
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Default value on Category Drop DownAnyone have any idea? Thanks much.
Forum: Fixing WordPress
In reply to: Read more link URL is “#more-327”Any ideas here?
Forum: Themes and Templates
In reply to: Display all the Categories and its Posts in a listThat worked perfectly. Thanks so much!!
Forum: Themes and Templates
In reply to: Display all the Categories and its Posts in a listThanks for that alchymyth, Michael’s solution did exactly what I needed, now I just need the ability to exclude certain categories from it.
Forum: Themes and Templates
In reply to: Display all the Categories and its Posts in a listThanks Michael! How can I exclude specific categories from this? Thanks again in advance.
Forum: Fixing WordPress
In reply to: Listing child categories and postsThis code seems to do what I need, but how do I exclude specific categories? Thanks in advance for the help.
<?php //get all posts for children of category $cata $cata = 16; $taxonomy = 'category'; $cata_children = get_term_children( $cata, $taxonomy ); $args=array( 'category__in' => $cata_children, 'post_status' => 'publish', 'posts_per_page' => -1, 'caller_get_posts'=> 1 ); $my_query = null; $my_query = new WP_Query($args); if( $my_query->have_posts() ) { echo 'List of Posts belonging to Category A children'; while ($my_query->have_posts()) : $my_query->the_post(); ?> <p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p> <?php endwhile; } wp_reset_query(); // Restore global post data stomped by the_post(). ?>
Forum: Themes and Templates
In reply to: Display all the Categories and its Posts in a listThe category 1 above didn’t display corrected on here, but my example category 2 and 3 is how I would like it to be.
Forum: Plugins
In reply to: [Plugin: Advertising Manager] Plugin stopped working for me.anyone have any ideas? Thanks
Forum: Fixing WordPress
In reply to: Limit wp_get_archives to show certain number of words per lineAny help please?
Forum: Fixing WordPress
In reply to: Limit wp_get_archives to show certain number of words per lineApologies for the bump….anyone?
Forum: Plugins
In reply to: [Plugin: MobilePress] MP theme takes over site themeThat just sounds like you’re switching views on your own browser. From here on out, unless you clear your browser cache you will see the full version but everyone else will see the mobile version even on their computer browsers.
Forum: Fixing WordPress
In reply to: Limit wp_get_archives to show certain number of words per lineAnyone know this?
Forum: Fixing WordPress
In reply to: Limit wp_get_archives to show certain number of words per lineDoes anyone have any ideas? I have a list of recent posts on my sidebar but instead of showing the whole title I’d like for it to show a limited number of characters:
>> This is the first post that…
>> Here comes the next post of…
>> Another example post here to…Something like the above.
Currently in my template I’m using this
<?php wp_get_archives(‘title_li=&type=postbypost&limit=8’); ?>
Any help would be appreciated.
Forum: Plugins
In reply to: [Plugin: MobilePress] MP theme takes over site themeHas anyone gotten it to work correctly on WP 2.7? I’m getting the same result as antonskey, once I activate the plugin the entire site is forced to render in the mobile theme even on regular browsers on computers.
The option to force mobile is set to no. I also checked the DB and forcemobile is “false”.
Anyone else have any ideas?
Any help would be appreciated.
Thanks.
Forum: Fixing WordPress
In reply to: Excerpt, Send Trackback and Discussion boxes missingNevermind, I should’ve poked around a bit more before asking, my mistake.
Apparently, the plugin in question unchecked these boxes inside the Screen Options on top. I rechecked them and they’re all these now.
My apologies, thanks anyway! =)