How can I add a link to an audio file for a post to its excerpt??
-
Hello guys,
I was hoping to get some help. I have posts that have attached audio files to them. What I would like to do is extend the excerpt function to include something like this:
function holylandmoments_comment_link() { return ' <a class="read-more-link" href="'. get_permalink() . '">' . __( 'Comment on this show »', 'holylandmoments-show' ) . '</a> | <a class="read-more-link" href="'. wp_get_attachment_url() . '">' . __( 'Listen to this episode »', 'holylandmoments' ) . '</a>'; }
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(); } else if ( has_excerpt() && in_category( _x('podcasts', 'pocasts category slug', 'holylandmoments') ) &&! is_attachment() ) { $output .= holylandmoments_listen_link(); } return $output; } add_filter( 'get_the_excerpt', 'holylandmoments_custom_excerpt_more' );
What I would like the end result be:
Post Headline
September 6, 2010 – 5:00 am
This week marks the beginning of the High Holy Days—the most sacred time of the year for the Jewish people and among the most widely observed of all the holy days. I often wonder whether synagogues experience such high numbers because these days mark an opportunity for all Jews to wash their slate clean and begin life anew. And who, at one time or another, hasn’t truly desired an opportunity to do just that? Read more… | Listen to Audio file linkThis is my archive.php page
Any help would do.
- The topic ‘How can I add a link to an audio file for a post to its excerpt??’ is closed to new replies.