alexholm
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Get category and date archives to display all posts?Ah ha! What a handy plugin, thanks, no need for my hack then ??
Forum: Themes and Templates
In reply to: Get category and date archives to display all posts?Though, that
$posts_per_archive_page
method didn’t work for me with WP2.0, so I had to squeeze my noodle abit. I ended up with putting this in my-hacks.php file:if ( !function_exists('fulu_sc_fix') ) :
function fulu_sc_fix($obj) {
if(is_search() || is_archive()) {
$obj->query_vars['posts_per_page'] = 12;
}
}
endif;
add_action('pre_get_posts', 'fulu_sc_fix');What the code do is setting the posts_per_page variable to a value of my choice when the page is_search or is_archive.
Forum: Your WordPress
In reply to: My baby’s blogNow it’s confirmed, the French are learning to drink wine as babies ?? Oh well, not sure what it was, but seem to be bitter for the baby ??
Although the design is one of the defaults equipped with WP, I must say the header was nice. Lot of great photos too. It sure looks like a babyblog ??
Hmm, I didn’t browse some of the pages before now. Neat feature to change the image in the header.
Forum: Requests and Feedback
In reply to: REQ: Some kind of mass edit mode on posts?I got inspired by the enhanced-view-plugin you mentioned Lorelle. So I made a plugin with the feature I was requesting myself ??
Though I can’t say it was easy. I went into a solution with “heavy” use of DOM/javascripting and ofcourse some WP action/filter usage.
Anyway, if any of you were interested in testing or using the plugin, I’ve already posted it here: https://www.ads-software.com/support/topic/32116
Forum: Requests and Feedback
In reply to: REQ: Some kind of mass edit mode on posts?Didn’t get the coldforged site to work (until now). But now I have already written my plugin ??
Though my plugin went another direction. It didn’t end up as any mod for the admin post management page. Instead it ended up as a “adminbar” on top of the theme. It only shows up when you are logged in or have access to change the post.
Anyway, my little contribution ?? (Should post it in the plugin forum maybe…)
https://fulu.auruminteractive.com/2005/04/26/plugin-comment-ping-status-changer/
Forum: Installing WordPress
In reply to: svn checkoutIs anonymous access on this SVN repository denied now? It asks me for username. Anonymous access worked yesterday.
I thought I would use the SVN to update my local WP instead for downloading zip all the time. Even the checkout doesn’t work.
Forum: Fixing WordPress
In reply to: Feed not validThanks for the unicode tip.
But still I wonder what happens with the item’s pubDate. As you see, the first pubDate that occurs within the <channel> is correct, but they all get localized within the <item>.
In wp-rss2.php, the difference between the call on mysql2date is the second parameter. Is get_the_time result localized? Or maybe it’s the foreach loop with the call on start_wp() that makes it localized? And isn’t start_wp deprecated?
Forum: Fixing WordPress
In reply to: Display name for comments displaying login idI have posted the issue about this yesterday (forgot to register so I’m an anonymous cow :D).
https://mosquito.www.ads-software.com/view.php?id=786
The best solution is to use $comment_author = $user_identity; since this will use the display name you specified.