Enough people loved this gist, so it's now a Github repository!
⭐ Please use the "The Events Calendar Reset" on Github going forward. ⭐
Enough people loved this gist, so it's now a Github repository!
⭐ Please use the "The Events Calendar Reset" on Github going forward. ⭐
| /** | |
| * External dependencies | |
| */ | |
| const { isUndefined, pickBy } = lodash; | |
| /** | |
| * WordPress dependencies | |
| */ | |
| const { | |
| registerBlockType, |
| <?php | |
| function editor_disable_core_blocks() { | |
| $blacklist = array( | |
| // -- Common | |
| 'core/paragraph', | |
| 'core/image', | |
| 'core/heading', | |
| 'core/subhead', | |
| 'core/gallery', |
| <?php | |
| /* | |
| Plugin Name: wordpress assist clean header | |
| Plugin URI: http://www.wordpressassist.nl/ | |
| Description: Remove shortlink hook | |
| Version: 1.0 | |
| Author: AukeJomm | |
| Author URI: http://www.aukejongbloed.nl | |
| */ | |
| <?php | |
| $args = array( | |
| 'post_status'=>'publish', | |
| 'post_type'=>array(TribeEvents::POSTTYPE), | |
| 'posts_per_page'=>10, | |
| //order by startdate from newest to oldest | |
| 'meta_key'=>'_EventStartDate', | |
| 'orderby'=>'_EventStartDate', | |
| 'order'=>'DESC', |