mrwok
Forum Replies Created
-
I answered my previous question…but have another one…
Are there conditional tags for custom attributes?
I created one called “18 and Over”, and I want to execute some things if this is the case….didn’t see any documentaiton on it…
Forum: Fixing WordPress
In reply to: Listing Future PostThanks Newsflash and Servant, this is pretty much on the dot. Appreciate the time and input. Consider this Topic closed.
Forum: Fixing WordPress
In reply to: adding addtional rewriterule rulesThank you very much, you are pimp
Forum: Fixing WordPress
In reply to: How do you view the htaccess rules generated by WP 2I meant the rules generated by wordpress that are dynamically generated….
RewriteRule . /index.php
Forum: Fixing WordPress
In reply to: Recent problemo in posts_nav_linkAnother navigation issue
/index.php/200405
or rather /index.php/yyyymm
Doesn’t seem to work also for the permalinks, it produces no search results.Forum: Everything else WordPress
In reply to: Dev blog hosedAll the rss feeds are hosed as well
Forum: Fixing WordPress
In reply to: Rewrite rules for feedsI have the same, problem, but I Can’t seem to trackdown a solution. Any Ideas anyone? My host doesn’t allow mod_rewrite.
Forum: Your WordPress
In reply to: polls for 1.2http://www.littleguydesigns.com/log/index.php/20040530/wordpress-polls/
For those of you, on 1.3 pre-alpha
This implementation should handle the upcoming changes made to the $tablenames.Forum: Your WordPress
In reply to: New Kid On The BlcokThanks for the comments on load time guys, I really appreciate it.
I love this place.Forum: Your WordPress
In reply to: New Kid On The BlcokOh, let me know if it loads to slow, specifically for non-broadband connections, I might have to optimize the images.
Thanks again πForum: Plugins
In reply to: WP Grins – Yet Another Clickable Smilies HackHey, What is the difference Alex Between smiley’s and grins, Between say a π and π
Why did you exclude the ” : -) “
ThanksForum: Plugins
In reply to: vBulletin Style Page NavigationYou can create a my-hacks.php file, don’t forget the <?php, and the ending ?> tags. Go to admin, and set your general options to allow hacks. and then call his function.
page_navigation($before=”, $after=”, $prelabel=’Β« ‘, $nxtlabel=’ Β»’)Forum: Fixing WordPress
In reply to: January Calendar WP 1.0I noticed this too…here is the fix…anyone know where to post bugs, and fixes to them…is there a section for that?
Go to the function
get_calendar()
Found in the file: template-functions.php, find the lines below, its at the end of the function
if (0 != $pad)
echo “\n\t\t<td class=’pad’ colspan=’$pad’> </td>”;
Change to this,
if (0 != $pad and 7 != $pad)
echo “\n\t\t<td class=’pad’ colspan=’$pad’> </td>”;