Subscription Form

Berlangganan newsletter seputar AI, analisa data, dan digital marketing

Jarvis AI Forums WordPress Snippet

Tagged: 

  • This topic has 1 reply, 1 voice, and was last updated 1 week, 1 day ago by Fajar Tri.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #4100
    Fajar Tri
    Keymaster

    Pro

    Oprek kode WordPress (code snippet). untuk menambah, mengurangi, atau mengubah fungsi WordPress

    #4101
    Fajar Tri
    Keymaster

    Pro

    Cara hapus logo WordPress dan kredit link footer di admin tanpa plugin.
    tambahkan kode ini di function.php theme yang dipakai:

    function example_admin_bar_remove_logo() {
    global $wp_admin_bar;
    $wp_admin_bar->remove_menu( ‘wp-logo’ );
    }
    add_action( ‘wp_before_admin_bar_render’, ‘example_admin_bar_remove_logo’, 0 );
    add_filter( ‘admin_footer_text’, ‘__return_empty_string’, 11 );
    add_filter( ‘update_footer’, ‘__return_empty_string’, 11 );

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.