Jellelle
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Blog by email bug?Pretty please?
Forum: Themes and Templates
In reply to: Blog by mail: is there a maximum length for the title?I am still desperate :(:(
Forum: Themes and Templates
In reply to: Blog by mail: is there a maximum length for the title?I installed a fresh 2.8 worpress on a testing, changed nothing.
It still breaks up my title.I’m desperate
Forum: Themes and Templates
In reply to: How to order category the way I want it?For those who want to know, here is the code I smashed together (no coding guru!)
<?php $cat_posts = new WP_Query('orderby=post_date&showposts=-1'); $i = 0; if($cat_posts->have_posts()) : while($cat_posts->have_posts()) : $cat_posts->the_post(); $category = get_the_category(); $allcategoriesID[$i] = $category[0]->cat_ID; $i++; endwhile; endif; $recentcategoriesID = array_values(array_unique($allcategoriesID)); for ($counter = 0; $counter <= 1; $counter += 1) { //Show last 2 categories who have been updated $args_temp = array('include' => $recentcategoriesID[$counter],'title_li'=>''); wp_list_categories($args_temp); } ?>
Forum: Plugins
In reply to: wp_list_categories: include a variableMy prayers have been answered!
Thanks!Forum: Plugins
In reply to: wp_list_categories: include a variableGreat, I’m getting it!
Know how I still can add ‘&title_li=’?Need to go to work, will take a look tonight
Cheers ??Forum: Themes and Templates
In reply to: Blog by mail: is there a maximum length for the title?Last try to get some reactions ??
- If I send an mail to my dedicated email address and check site.com/wp-mail.php, I see only 10, 11 words, depending on the length of the words.
It’s a clean break everytime, no words are cut up, it just breaks after the word. - Mailing with an other email address doesn’t help.
- If I put my old (2.5) version of wp-mail.php, which worked, I get the same problem
I don’t get it anymore…
So please, anybody? ??
Forum: Themes and Templates
In reply to: Blog by mail: is there a maximum length for the title?it seems like there is a max. amount of characters for the title, something around 64…??
Still stuck
Forum: Themes and Templates
In reply to: How to order category the way I want it?Thanks all!
Forum: Themes and Templates
In reply to: How to order category the way I want it?well, I thought it worked in 2.7. didn’t had that many categories ??
At lest they where showing up without displaying NO CATEGORIES.So there is no way to do this?
Forum: Themes and Templates
In reply to: Blog by mail: is there a maximum length for the title?Nobody an idea?
Forum: Themes and Templates
In reply to: Getting tags with WP_QueryThanks for the reply, but I tried that and it didn’t show anything.
If I use
<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
and then
<?php the_tags('Wrote post in:' ', ' ''); ?>
it works, but with that WP_Query, it doesn’t show ??
Forum: Themes and Templates
In reply to: Show second last postSweeeeet ??
Thanks!Forum: Themes and Templates
In reply to: Show last post within all categories, except 1 categoryOh. So easy! I could kiss you
Solved!
CheersForum: Themes and Templates
In reply to: Show last post within all categories, except 1 categoryDamn, nobody? ??
- If I send an mail to my dedicated email address and check site.com/wp-mail.php, I see only 10, 11 words, depending on the length of the words.