PluginProbe
Hostinger Tools / 2.1.8
Hostinger Tools v2.1.8
3.0.77 3.0.76 3.0.75 3.0.74 3.0.73 3.0.72 3.0.71 3.0.70 3.0.69 3.0.68 3.0.67 3.0.66 1.8.1 1.8.2 1.8.3 1.9.1 1.9.4 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.0.1 2.0.4 All 108 releases
← All changes | includes/Admin/Menu.php +8 -7 2.1.72.1.8 View file →
@@ -98,15 +98,16 @@
98 98 'meta' => array(
99 99 'target' => '_blank',
100 100 ),
101 101 ) );
102 -
103 - $bar->add_menu( array(
104 - 'id' => 'create_content_with_ai',
105 - 'parent' => 'hostinger_admin_bar',
106 - 'title' => esc_html__( 'Create content with AI', 'hostinger' ),
107 - 'href' => self::AI_ASSISTANT_URL,
108 - ) );
102 + if ( has_action( 'hostinger_ai_assistant_tab_view' ) && current_user_can( 'edit_posts' ) ) {
103 + $bar->add_menu( array(
104 + 'id' => 'create_content_with_ai',
105 + 'parent' => 'hostinger_admin_bar',
106 + 'title' => esc_html__( 'Create content with AI', 'hostinger' ),
107 + 'href' => self::AI_ASSISTANT_URL,
108 + ) );
109 + }
109 110 }
110 111
111 112 public function render(): void {
112 113 $onboarding = new Onboarding();