Skip to content

Commit

Permalink
fix: reorder taxonomy menus on dashboard (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ned Zimmerman authored Feb 27, 2020
1 parent 4cbd457 commit 3d22d2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions includes/functions/core.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ function setup() {
add_action( 'init', $n( 'i18n' ) );
add_action( 'init', $n( 'init' ) );
add_action( 'init', $n( 'resource_init' ) );
add_action( 'init', $n( 'goal_init' ) );
add_action( 'init', $n( 'topic_init' ) );
add_action( 'init', $n( 'coop_type_init' ) );
add_action( 'init', $n( 'sector_init' ) );
add_action( 'init', $n( 'region_init' ) );
add_action( 'init', $n( 'topic_init' ) );
add_action( 'init', $n( 'goal_init' ) );
add_action( 'init', $n( 'format_init' ) );
add_filter( 'use_block_editor_for_post_type', $n( 'supports_block_editor' ), 10, 2 );

Expand Down

0 comments on commit 3d22d2c

Please sign in to comment.