GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Looking for a WP plugin (https://gfy.com/showthread.php?t=942907)

Toni 12-11-2009 01:22 AM

Looking for a WP plugin
 
Is there a WordPress plugin that can display shortened titles of the latest or selected posts?

halfpint 12-11-2009 06:19 AM

Bump for Fris to see this ..he will know

fris 12-11-2009 06:28 AM

Dont really need a plugin, you could add this to your functions.php in your theme directory.

Code:

function short_title($after = '', $length) {
        $mytitle = get_the_title();
        if ( strlen($mytitle) > $length ) {
        $mytitle = substr($mytitle,0,$length);
        echo $mytitle . $after;
        } else {
        echo $mytitle;
        }
}

then call it from your template

Code:

<?php short_title('...', 40); ?>
40 being the characters for the title, and ... being after the title.

bloggerz 12-11-2009 06:56 AM

good tip.

CaptainHowdy 12-11-2009 07:20 AM

I love you, fris :( ...

fris 12-11-2009 09:34 AM

love is a strong word

Toni 12-13-2009 05:08 AM

Fris thank you!

brassmonkey 12-13-2009 06:49 AM

hahaha love birdz


All times are GMT -7. The time now is 11:56 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc