I'm trying to get this link to look like this:

Comment on this show >> | Listen to this show >>

Where "Comment on this show >>" gets populated properly with its permalink.

"Listen to this show >>" link should be populated with that posts 'Listen Now' custom field value.

function holylandmoments_comment_link() {
return ' <a class="read-more-link" href="'. get_permalink() . '">' . __( 'Comment on this show &raquo;', 'holylandmoments-show' ) . '</a> &nbsp;|&nbsp; <a class="read-more-link" href="'. get_post_meta($post->ID, 'Audio File',true); . '">' . __( 'Listen to this episode &raquo;', 'holylandmoments' ) . '</a>';
}

Problem is I don't get the path to the custom field value of Listen Now to populate the second link... any ideas??

The custom field value is a link to an audio file. So for all posts that fall under the category shows there is a custom field named 'Audio File' the value of that field is:

http://www.mydomain.org/audio/sample.mp3

So when the excerpt is called for archive pages to display I need two links to display one that points back to the post and another that points to the MP3 file.

So in my functions.php file I have the function above and then I call it with:

function holylandmoments_custom_excerpt_more( $output ) {
if ( has_excerpt() && in_category( _x('devotionals', 'devotionals category slug', 'holylandmoments') ) &&! is_attachment() ) {
    $output .= holylandmoments_read_more_link();
}
else
if ( has_excerpt() && in_category( _x('shows', 'shows category slug', 'holylandmoments') ) &&! is_attachment() ) {
    $output .= holylandmoments_comment_link();
}
return $output;
}
add_filter( 'get_the_excerpt', 'holylandmoments_custom_excerpt_more' );

Thanks!

Matt

link|improve this question

The reason I am trying to do this is I need to create a podcast for iTunes and when I try to submit the feed to iTunes I keep getting errors saying that the feed has no episodes. So I think adding the second link to the end of my excerpt iTunes will be able to find the path to the audio file and allow iTunes to pick up the episode. Here is the link to my feed: feeds.feedburner.com/HolyLandMoments – Matthew Sep 13 '10 at 21:28
feedback

1 Answer

up vote 1 down vote accepted

You have an extra semicolon in there.

href="'. get_post_meta($post->ID, 'Listen Now',true); . '">'
                                                    ^

Change to:

href="'. get_post_meta($post->ID, 'Listen Now',true) . '">'

The $post variable may not be in the current scope, so try bringing in the global $post into it.

function holylandmoments_comment_link() {
   global $post;
   return ' <a class="read-more-link" href="'. get_permalink() . '">' . __( 'Comment on this show &raquo;', 'holylandmoments-show' ) . '</a> &nbsp;|&nbsp; <a class="read-more-link" href="'. get_post_meta($post->ID, 'Audio File',true); . '">' . __( 'Listen to this episode &raquo;', 'holylandmoments' ) . '</a>';
}

I believe the function the_ID() also returns the ID of the current post, so try the following if it the other one doesn't work:

function holylandmoments_comment_link() {
   return ' <a class="read-more-link" href="'. get_permalink() . '">' . __( 'Comment on this show &raquo;', 'holylandmoments-show' ) . '</a> &nbsp;|&nbsp; <a class="read-more-link" href="'. get_post_meta(the_ID(), 'Audio File',true); . '">' . __( 'Listen to this episode &raquo;', 'holylandmoments' ) . '</a>';
}
link|improve this answer
Let me try this and let you know if this works... – Matthew Sep 14 '10 at 16:42
This did not work... when I add this to the function the link that is generated links to the same page that the link is in. – Matthew Sep 14 '10 at 19:50
@Matthew: I'm not exactly sure what you mean. Could you add an example of a link that is generated, versus what you expect/want? – CD Sanchez Sep 14 '10 at 20:44
@Daniel here is the link where I want these links to live:holylandmoments.org/shows – Matthew Sep 14 '10 at 20:46
@Matthew: But where is an example of the 'Listen Now' link the code currently generates? Also, thanks, whoever downvoted me for no apparent reason :/. – CD Sanchez Sep 14 '10 at 21:01
show 7 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.