Use post excerpt as caption?
-
Is it possible to insert the “post excerpt” in the caption?
I’m currently using a method from a contributer and it works great:
$tags = get_the_tags($ID); $tagged = ''; if ( $tags ) { foreach ( $tags as $tag ) { $tagged[] = rawurlencode($tag->name); } $tagged = implode('#',$tagged); } $caption = get_the_title($ID)."\n".home_url('?p='.$ID)."\n#".$tagged; // captionI’m wondering if it would be possible to add the “post excerpt” as well? Thanks in advance.
The topic ‘Use post excerpt as caption?’ is closed to new replies.