Skip to content

Instantly share code, notes, and snippets.

@ArseniyShestakov
Created June 6, 2016 18:54
Show Gist options
  • Save ArseniyShestakov/c3f29b2cfcbacd1b7ea63f138ad58006 to your computer and use it in GitHub Desktop.
Save ArseniyShestakov/c3f29b2cfcbacd1b7ea63f138ad58006 to your computer and use it in GitHub Desktop.
Random ColorBox magic to show title on top of lightbox
/* SXX */
#cboxLoadedContent {
margin-top:28px;
}
#cboxTitle {
position:absolute; top:4px; left:0; text-align:center; width:100%; color:#444;font-weight:bold;text-decoration:underline;
}
/* SXX */
function add_title_attachment_link($link, $id = null) {
$id = intval( $id );
$_post = get_post( $id );
$post_content = esc_attr( $_post->post_content );
return str_replace('<a href', '<a title="'. $post_content .'" href', $link);
}
add_filter('wp_get_attachment_link', 'add_title_attachment_link', 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment