[Plugin: Like Photo] WP Gallery
-
How can we use this plugin with native WP gallery.
Something like: [add_voting][gallery][/add_voting]
I changed, but without success:
function add_voting_handler($atts, $content = null) { global $post; $pattern = '#(<a.[^>]*?>)?<img[^>]*src="([^"]*)"[^>/]*?/>(?(1)\s*</a>)#isU'; $content = preg_replace_callback($pattern, "get_image_votes", $content); return $content; } add_shortcode('add_voting', 'add_voting_handler' );
into
function add_voting_handler($atts, $content = null) { global $post; $pattern = '#(<a.[^>]*?>)?<img[^>]*src="([^"]*)"[^>/]*?/>(?(1)\s*</a>)#isU'; $content = preg_replace_callback($pattern, "get_image_votes", $content); return do_shortcode($content); } add_shortcode('add_voting', 'add_voting_handler' );
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘[Plugin: Like Photo] WP Gallery’ is closed to new replies.