Skip to content

Commit

Permalink
WP.com admin bar: Enqueue styles with proper hook (#38421)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmtr authored Jul 19, 2024
1 parent 228835b commit afc4c3b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions projects/packages/jetpack-mu-wpcom/changelog/fix-admin-bar-p2
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Significance: patch
Type: fixed
Comment: Minor admin bar fix for P2 sites


Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ function wpcom_enqueue_admin_bar_assets() {
);
}
}
add_action( 'admin_bar_menu', 'wpcom_enqueue_admin_bar_assets' );
add_action( 'wp_enqueue_scripts', 'wpcom_enqueue_admin_bar_assets' );
add_action( 'admin_enqueue_scripts', 'wpcom_enqueue_admin_bar_assets' );

/**
* Replaces the WP logo as a link to /sites.
Expand Down

0 comments on commit afc4c3b

Please sign in to comment.