а какая разница какой модуль?от этого зависит реализация. Возможно в модуле уже есть thankyoupage
$attachedImages
?$attachedImages = get_attached_media('image', $post->ID);
sendEmailVerificationNotification()
$args = array(
'post_type' => 'attachment',
'post_mime_type' => 'image',
'numberposts' => -1,
'post_status' => null,
'post_parent' => $post->ID
);
$attachedImages = get_posts($args);
the_excerpt();
$(document).ready(function() {
$('.zoomImg').attr('role', 'lightbox');
});
add_action('wp_enqueue_scripts', 'add_custom_script');
function add_custom_script(){
wp_enqueue_script( 'custom', get_template_directory_uri() . '/js/custom.js');
}
wp_enqueue_script( 'custom', get_template_directory_uri() . '/js/custom.js');
единственный выход - это копировать файл jquery.zoom.js, заново его подключать и изменять ?