A
A
alex1nd2018-01-08 01:11:42
JavaScript
alex1nd, 2018-01-08 01:11:42

Fancybox image flipping how to add?

How to add a paging function? forward back in WORDPRESS

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
alex1nd, 2018-01-08
@alex1nd

add_filter('the_content', 'my_addlightboxrel', 50);
function my_addlightboxrel($content) {
       global $post;
       $pattern ="/<a(.*?)href=('|\")(.*?).(bmp|gif|jpeg|jpg|png)('|\")(.*?)>/i";
       $replacement = '<a$1href=$2$3.$4$5 rel="[gallery]" title="'.$post->post_title.'"$6>';
       $content = preg_replace($pattern, $replacement, $content);
       return $content;
}
add_filter( 'use_default_gallery_style', '__return_false' );

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question