tis
Forum Replies Created
-
Forum: Plugins
In reply to: New Plugin: Greek pluginI’m working on the rss feed problem. Anyone know how to modify the feed that WordPress produces?
Forum: Plugins
In reply to: New Plugin: Greek pluginForum: Fixing WordPress
In reply to: 1.5 – moving from Moveable type to WordPress easier?I’ve just posted another way to do the redirect of old pages. If anyone is interested…
Forum: Fixing WordPress
In reply to: Need Help Redirecting From Old MT Bloghttps://tis.goringe.net/2005/04/12/redirecting/ has another way of hacking this…
Forum: Plugins
In reply to: Plugin: This week last yearandrea_r:
You can do two years ago: you just need to put the number of days ago you want to start and end at as parameters… so
<?php cg_wayback(733,726); ?>
will do all posts between 726 and 733 days ago (a one week slot two years ago).
I’ll think about the ‘this day in previous years’ idea, might be a different plugin :).
Hey – how do you do the bars on your blog, with the date on the far right, dividing entries up by day? That’s cool, I’d like to steal it.
mcmike:
Yes, it’s 1.5 compatible. I don’t know if it works with older versions, I only have 1.5 (new WordPress user, here). And see the above answer – you can use it for a shorter time ago if you prefer…
piginzen:
Good idea. I’ll look into it. I see you have an ‘on this day’ thing on your blog – can you point me to the relevant plugin or code?
Forum: Plugins
In reply to: Plugin: This week last yearandrea_r:
You can do two years ago: you just need to put the number of days ago you want to start and end at as parameters… so
<?php cg_wayback(733,726); ?>
will do all posts between 726 and 733 days ago (a one week slot two years ago).
I’ll think about the ‘this day in previous years’ idea, might be a different plugin :).
Hey – how do you do the bars on your blog, with the date on the far right, dividing entries up by day? That’s cool, I’d like to steal it.
mcmike:
Yes, it’s 1.5 compatible. I don’t know if it works with older versions, I only have 1.5 (new WordPress user, here). And see the above answer – you can use it for a shorter time ago if you prefer…
piginzen:
Good idea. I’ll look into it.
Forum: Requests and Feedback
In reply to: Code for uploaded ImagesI’ve hacked my installation to give a slightly greater level of support. I’m sure someone can come up with a better way to do it:
In upload.php I inserted
$poc = urlencode( $piece_of_code );
directly before
$piece_of_code = htmlspecialchars( $piece_of_code );
and inserted
<a target="_blank" href="post.php?action=exact&content=<?php echo $poc; ?>"><?php _e('Create a new post with this image'); ?></a>
directly before
<strong><?php _e('Image Details') ?></strong>:
(both insertions are near the end of the file)
then in post.php I inserted
case 'exact':
$content = stripslashes($content);
# Intentional fall throughdirectly before
default:<br />
$title = __('Create New Post');<br />
require_once ('./admin-header.php');This adds a link to the upload-completed page which creates a new post with the img link already inserted into the body.