Guitar/Bass/Sax Trio
// Auto Featured Image Setter - Persistent Social Meta Tags function afi_add_social_meta_tags() { if (is_singular()) { global $post; $title = get_the_title($post->ID); $description = get_the_excerpt($post->ID); $url = get_permalink($post->ID); $image = has_post_thumbnail($post->ID) ? get_the_post_thumbnail_url($post->ID, 'full') : ''; // Open Graph tags echo '\n'; echo '\n'; echo '\n'; echo '\n'; echo '\n'; // Twitter tags echo '\n'; echo '\n'; echo '\n'; echo '\n'; } } add_action('wp_head', 'afi_add_social_meta_tags');