Kowalsky
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: WordPress abuses Rel TagHello,
this thread was interesting as I was having the same rel=”category tag” validation error after updating my theme.
Ipstenu post was helpfull to understand the “white space” thingie as english is also not my mother tongue, but I still wasn’t satisfied as the error was also there when using a clean install of WP and theme 2011.
So I had a look at the full code and found out this was coming from line 163 in wp-includes/category-template.php
I then replaced
'rel="category tag"'
by'rel="tag"'
and got a valid HTML5 code.So far it seems not to alter my WP but I know that on next WP update I’ll have to modify the file again to keep the code valid.
The purpose of my comment : is there a reason using
'rel="category tag"'
instead of'rel="tag"
in this particular place or could this fix be applied to the existing core code ?Good catch MichaelH !
Forgot about the plugins thingy.
Deactivated all of them and was not able to reproduce the issue.
So did activated them one by one and found out that “ImageManager” was the root cause.
Checked on author site and noticed that plugin support was stopped at WordPress 2.5.
///
Case solved.
Hello MichaelH,
same issue with
<?php wp_get_archives('type=alpha'); ?>
If I add the 402 limit, I have indeed the alphabetic list.
Forum: Fixing WordPress
In reply to: Problem with editing comments using WP 2.0.3Thanks for the link NuclearMoose, works fine for me now.
Forum: Fixing WordPress
In reply to: RSS won’t validate because of localizationnevermind,
found also the fix for the RSS time issue:
https://trac.www.ads-software.com/changeset/2373Forum: Fixing WordPress
In reply to: RSS won’t validate because of localizationHi all,
thanks akc for the fix, been able to recover the date and time in my rss with the suggested fix, and it validates again.
However I have found a strange behaviour in return. As we know, time used in WP is by default in UTC, and in the “option” panel, you can set a modifier to get the local time. (in my case: +2)
What I have noticed is that although WP comments are correctly diplayed as time H +2, now I can see the RSS time displayed as H +4 .
Any idea?
Forum: Fixing WordPress
In reply to: links on the sidebar by categoriesHello,
from my understanding ‘<?php wp_get_links(id); ?>’ is the trick to get all the links from a specific category, but it does not report the category name associated with.
While ‘<?php get_links_list(); ?>’ does it, but will list all the categories.I was wondering if there was a way to get the category name automaticaly from WP when you select a category ID?
If I’m correct the code provided by Macmanx means that you have to type manualy the category name each time (wich is indeed a working solution).
I’m wondering what modifications are to be done on the code given in the codex and reproduced above by Marc to do the same?
Not knowing PHP, I have tried to modify it for a single category but without success. I don’t know what parameter to use.
Thanks.
Forum: Fixing WordPress
In reply to: RSS won’t validate because of localizationhello,
I have the same issue with a french localization.
but I can see that your RSS does validate now.
how did you managed to get it working ?thanks.