Results 1 to 3 of 3

 

Thread: Wordpress Shorter Link Names

  1. #1
    Registered User

    Status
    Offline
    Join Date
    Feb 2009
    Location
    Lancashire
    Posts
    297
    Thanks
    64
    Thanked 35 Times in 21 Posts


    I display links to recent posts in the sidebar of my wordpress sites (using widgets) but I'd like to make the post link names shorter than the post title. For example if my post title is -

    "Samsung HT-BD1252 5.1ch Blu-ray Home Cinema System"

    I'd like to have a link name of "Samsung HT-BD1252" as obviously that's going to look/fit much better in the sidebar.

    Aside from manualy creating the links in html is there a better/quicker way to achieve this?
    Last edited by macnpaul; 05-04-10 at 12:36 PM. Reason: typo

  2. #2
    ian
    Registered User

    Status
    Offline
    Join Date
    Nov 2004
    Posts
    1,045
    Thanks
    30
    Thanked 106 Times in 80 Posts
    You'll have to set up a new custom field for each post i.e. 'shortTitle' and populate with your new short link text, then add some code to your sidebar.php

    <ul>
    <?php
    query_posts('showposts=30');
    while (have_posts()) : the_post();
    echo "<li><a href=".get_permalink($post->ID).">".get_post_meta($post->ID, 'shortTitle', true)."</a></li>" ;
    endwhile;
    ?>
    </ul>

    If you want it to look the same output from the widget, take a look at the source code that it chucks out and work the css into the code above.

  3. The Following User Says Thank You to ian For This Useful Post:

    macnpaul (05-04-10)

  4. #3
    Registered User

    Status
    Offline
    Join Date
    Feb 2009
    Location
    Lancashire
    Posts
    297
    Thanks
    64
    Thanked 35 Times in 21 Posts
    Thanks ian, that looks like a good way to do it.



Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. How do i make a link in wordpress a different colour..?
    By moredreams in forum Affiliate Marketing Lounge
    Replies: 4
    Last Post: 22-02-10, 09:50 AM
  2. WordPRess Link pages
    By aero_mansoor in forum Affiliate Marketing Lounge
    Replies: 6
    Last Post: 23-11-09, 12:00 PM
  3. Help with adding link to wordpress header
    By hens00 in forum Media Coverage & PR Strategy
    Replies: 2
    Last Post: 02-09-08, 07:25 PM
  4. Shorter, snappier banners
    By Bathing Beauty in forum Affiliate Marketing Lounge
    Replies: 0
    Last Post: 12-10-06, 04:14 PM
  5. Shorter, snappier banners
    By Bathing Beauty in forum Webgains
    Replies: 0
    Last Post: 12-10-06, 04:12 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
To Top

Content Relevant URLs by vBSEO 3.5.0 RC2