Hello - I am using the Category Shortcode plugin to generate a list of posts from specific categories and paste them into a specific page.
Here is my question: I need to be able to change the post titles that are listed to instead have custom names based on either the custom title used for the 'All In One SEO' plugin or based on the tags used from the basic wordpress tag entry.
Here is a link to the page as an example of what I have, what I need is to change these names to specific ones based on either what I entered in the All In On SEO or based on the Tags entry.
http://www.sliceoffeist.com/recipes/soup/
Here is the code from the Category Shortcode plugin I probably need to change up somehow but I am not exactly sure:
case 'title':
foreach($rdcsc_posts as $post) :
setup_postdata($post);
$rdcsc_excerpt = get_the_excerpt();
$rdcsc_author = get_the_author();
$rdcsc_comments = get_comments();
// added in 1.3 release
$rdscf_output.='<div class=csc_post csc_title>';
$rdscf_output.='<div class=csc_post_title><a href="' . get_permalink($rdcsc_posts ->ID).'">' . the_title("", "", false) .'</a></div>';
$rdscf_output.='<div class=csc_break></div>';
$rdscf_output.='</div>';
endforeach;
break;