I am using a category in wordpress that is just for links that I post to the site. When I make a new post that is a linked title (using the Linked List plugin from Jonathan Penn) I want the title to be formatted differently that it is when I do a non-link post.
I am currently using this for my titles:
<h1><a href="<?php the_linked_list_link('url') ?>"><?php the_title(); ?></a></h1>
But I would like it to do this:
If this post is in the category links then it would display this:
<ll><a href="<?php the_linked_list_link('url') ?>"><?php the_title(); ?></a></ll>
and if it is not then it would display this:
<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
I am terrible at PHP and would appreciate any type of help.
[edited by: coopster at 12:47 pm (utc) on May 11, 2010]
[edit reason] removed personal/specific domain name [/edit]