Notice bar at frontpage for multisite

Running a multisite install I would like to distribute messages to all sites as a top notice bar on frontpage. All sites are read and posted from frontpage so admin area message plugins won’t work.

Searched and can’t find plugin/solution that works for both communicating with all sites on multisite and not at adminarea. Also, I’m not using the WP admin bar on front for this network, so that is not an option. Any ideas?

Related posts

Leave a Reply

1 comment

  1. You can use the adminbar on front. Plus you can customize it to your needs.

    Example on how to add a node

    // Read here 1)
    function nacin_promote_network_admin_in_toolbar( $wp_admin_bar ) {
        $wp_admin_bar->add_node( array(
            'id' => 'network-admin',
            'parent' => false,
        ) );
    }
    add_action( 'admin_bar_menu', 'nacin_promote_network_admin_in_toolbar', 25 );
    

    1) Read on WPDevel how to add/remove_nodes in the admin bar.