Skip to content

Instantly share code, notes, and snippets.

@mintplugins
Created May 31, 2015 03:50
Show Gist options
  • Save mintplugins/5caf807b094bddfb6181 to your computer and use it in GitHub Desktop.
Save mintplugins/5caf807b094bddfb6181 to your computer and use it in GitHub Desktop.
PostGrid: Filter the classes for a postgrid links to make them open in a lightbox
/**
* Filter the classes for a postgrid links to make them open in a lightbox
*
* @since 1.5.0
*
* @param string $classes The string containing all of the classes for postgrid links
*/
function my_custom_postgrid_classes( $classes ){
return 'mp-stacks-lightbox-link';
}
add_filter( 'mp_stacks_postgrid_grid_postlink_classes', 'my_custom_postgrid_classes' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment