javascript ギャラリーを wordpress で実行しようとしていますが、ギャラリーを実行するために .ready(function) に何を入れればよいかわかりません。jQuery 関数の元のページはこちら: http://manos.malihu.gr/simple-jquery-fullscreen-image-gallery/2
JavaScriptファイル全体を実行する関数を実行する必要があると思いますが、その関数が何であるかはよくわかりません。初心者で申し訳ありませんが、よろしくお願いします!
function malihu_gallery() {
if (!is_admin()) {
// Enqueue Malihu Gallery JavaScript
wp_register_script('malihu-jquery-image-gallery', get_template_directory_uri(). '/js/malihu-jquery-image-gallery.js', array('jquery'), 1.0, true );
wp_enqueue_script('malihu-jquery-image-gallery');
// Enqueue Malihu Gallery Stylesheet
wp_register_style( 'malihu-style', get_template_directory_uri() . '/CSS/malihu_gallery.css', 'all' );
wp_enqueue_style('malihu-style' );
function gallery_settings () { ?>
<script type="text/javascript">
jQuery(document).ready(function() {
// What do I put in here?
});
</script><?php
}
}
}
add_action('init', 'malihu_gallery');