| 1: | <?php |
| 2: | |
| 3: | |
| 4: | |
| 5: | |
| 6: | |
| 7: | |
| 8: | |
| 9: | |
| 10: | |
| 11: | |
| 12: | |
| 13: | |
| 14: | |
| 15: | function eventpost_timeline_block_init() { |
| 16: | $dir_path = EventPost()->plugin_path; |
| 17: | $dir = dirname( __DIR__ ); |
| 18: | |
| 19: | wp_register_script('event-post-timeline', plugins_url('/build/timeline/event-timeline.js', $dir), ['jquery'], false, true); |
| 20: | |
| 21: | \register_block_type( $dir_path . '/build/timeline', array( |
| 22: | 'render_callback' => array(EventPost()->Shortcodes, 'shortcode_timeline'), |
| 23: | 'script' => 'event-post-timeline', |
| 24: | )); |
| 25: | } |
| 26: | add_action( 'wp_loaded', 'eventpost_timeline_block_init' ); |
| 27: | |