plinth
Forum Replies Created
-
Forum: Plugins
In reply to: Geo Targeting plugin?Bump – anyone?
Forum: Plugins
In reply to: [Plugin: Ad Buttons] Using the geo targeting in other widgets/ads?Does anyone know of a way to do geo targeting like this but with different sized ads I can place anywhere on my site?
Forum: Fixing WordPress
In reply to: Show recent posts on static page on different domain?Ta, followed that and ended up using SimplePie.
Forum: Plugins
In reply to: Latest news Flash image rotator like GameSpot/IGN/GameBattles?Thanks, I went for this in the end: http://www.frontpageslideshow.net/
Forum: Fixing WordPress
In reply to: Possible to list authors by their last post date?That’s fantastic, thanks.
Not to be outdone, the client has now suggest those who have not posted in the last 3 months be missed off the list…
Forum: Fixing WordPress
In reply to: Possible to list authors by their last post date?Brilliant!
Now here’s a challenge for you – how about making the most recent poster rise to the top of the list…
Forum: Fixing WordPress
In reply to: Possible to list authors by their last post date?Thanks MichaelH, with a little tweaking of your code I’ve put this together:
<ul> <?php //List of users sorted Descending by number of posts $uc=array(); $blogusers = get_users_of_blog(); if ($blogusers) { foreach ($blogusers as $bloguser) { $post_count = get_usernumposts($bloguser->user_id); $uc[$bloguser->user_id]=$post_count; } arsort($uc); foreach ($uc as $key => $value) { $user = get_userdata($key); $author_posts_url = get_author_posts_url($key); $post_count = $value; echo '<li><a href="' . $author_posts_url . '">' . $user->user_firstname . ' ' . $user->user_lastname . '</a> (' . $post_count . ') </li>'; } } ?> </ul>However, I’d like to exclude authors with 0 posts – is this do-able?
Forum: Plugins
In reply to: [Plugin: Viper’s Video Quicktags] dynamic scalingBump. Did anybody solve this?
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Advertisements?Bump – any solutions?
Forum: Everything else WordPress
In reply to: How to redirect image URL link to image permalink?I’d be very interested in this too – did you find a way to do it?
Forum: Fixing WordPress
In reply to: Title tag vs Slug – who will win?I ended up using this solution: http://wordpress.org/support/topic/52216?replies=4
Forum: Fixing WordPress
In reply to: Title tag vs Slug – who will win?Kafkaesqui, I tried that and it just displays the default title for that Page. Incidentally, I don’t have the_title() in my header.php file, only wp_title(), does this make a difference?
Forum: Fixing WordPress
In reply to: Title tag vs Slug – who will win?Kafkaesqui, thanks – I’ll try that and report back…
Forum: Themes and Templates
In reply to: Different CSS for each page (not category)Sadish, you were extremely close, after some minor tweaks it should read:
<?php if ( is_page ('home')) { ?>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/style.css" type="text/css" media="screen" />
<?php } ?>
<?php if ( is_page('portfolio')) { ?>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/style_portfolio.css" type="text/css" media="screen" />
<?php } ?>Forum: Themes and Templates
In reply to: Different CSS for each page (not category)Yes, sorry I did mean Pages! The link you provided is very useful, but still only refers to per-category css. Is there a per-page css option?