View Single Post
Old 09-17-2009, 08:18 PM  
fris
Too lazy to set a custom title
 
fris's Avatar
 
Industry Role:
Join Date: Aug 2002
Posts: 55,533
heres a few others to look at

http://justintadlock.com/archives/20...rdpress-plugin

http://wordpress.org/extend/plugins/rb-internal-links/

or some code to do it via your functions.php file

Code:
function print_link($atts, $content = null) {
        global $post;
        $permalink = get_permalink($post->ID);
        return '<a href="'.$permalink.'">'.$content.'</a>';
}

add_shortcode('mypermalink','print_link');
then you would do
Code:
[mypermalink]title you want[/mypermalink]
__________________
Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.


My Cam Feeds Script / Gallery Scraper / WPXXX Theme / Free Templates
fris is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote