Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)
  • Forum: Plugins
    In reply to: New Plugin: Greek plugin

    I’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 plugin

    Sorry; it’s moved (and been upgraded).

    See

    https://tis.goringe.net/greekify/

    I’ve just posted another way to do the redirect of old pages. If anyone is interested…

    https://tis.goringe.net/2005/04/12/redirecting/

    https://tis.goringe.net/2005/04/12/redirecting/ has another way of hacking this…

    Forum: Plugins
    In reply to: Plugin: This week last year
    Thread Starter tis

    (@tis)

    andrea_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 year
    Thread Starter tis

    (@tis)

    andrea_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’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 through

    directly 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.

Viewing 7 replies - 1 through 7 (of 7 total)