web-dev-qa-db-ja.com

Ajaxifyカレンダー

私はページを更新せずに、月のナビゲーションのためにワードプレスのカレンダーにajaxifyの "next"と "prev"のリンクが必要です。

これにはいくつかのプラグインがあります - しかし私はウィジェットを使わずにカレンダーを呼び出します - get_calendar();

1
Ronin

必要なJavaScriptを作成してから、このコードを使用してページに表示します。カレンダーが表示される場合にのみスクリプトが含まれるようになります。

add_filter('get_calendar',  'add_calendar_scripts');
function add_calendar_scripts($content) {
    add_action( 'wp_footer', 'output_calendar_scripts', 11);
    return $content;
}

function output_calendar_scripts() {
    ?>
    <script type="text/javascript" src="<?php echo get_template_directory_uri();?>/path/to/script.js"></script>
    <?php
}
1
Mridul Aggarwal