WordPress has no macros like that but it can be done.
If the plugin is already installed, you can Network Activate it so it will be available on any blog in the network.
As for the page with title, you’ll need to create or source a plugin to do that as it will need to be created after the site is created.
A quick and untested approach:
add_action( 'wpmu_new_blog', 'wpse_190815');
function wpse_190815( $blog_id ) {
$page_title="Custom Page Title";
$post_data = array(
'post_type' => 'page',
'post_title' => $page_title,
);
//switch to the new blog
switch_to_blog( $blog_id );
//create the new page
$page = wp_insert_post( $post_data );
//go back to the current blog
restore_current_blog();
}
This should probably go in wp-content/mu-plugins to be sure it’s always loaded.
Hope this helps!
Related Posts:
- Portfolio + Blog: multisite or plugin?
- ‘Global’ settings page for multisite plugin
- How to do I get a list of active plugins on my wordpress blog programmatically?
- How to add field for new site-wide option on Network Settings screen?
- Making my plugin multi-site compatible
- How to tell if a plugin is multisite compatible?
- Plugin Development: WPMU or WP?
- WordPress sharding: which multi-DB plugin to use?
- Auto Load Plugin Hooks inside Must Use Plugin
- How Is Network Activate Different From Activate (by Implementation)?
- How to get the main blog’s id and db prefix from a mu plugin?
- Inherit plugin settings to new site in Multisite
- What is a Network Activated Plugin Exactly?
- How to install plugins in individual sites on a wordpress network?
- How to Check If A Plugin Is Enabled Through API?
- Fatal error: Call to undefined function wp_get_current_user()
- How to tell if plugin has been network activated
- How does WordPress Multisite know that a Plugin is installed?
- How to run Two WordPress blogs with different themes and with single database and same content
- Using Vagrant for customizable WordPress Multi-sites [closed]
- Can I enable/disable/hide plugins on a per-site basis in multisite?
- How to enable Admins to see Plugins
- Sharing Ad Revenue among Users of a Multisite in a Collaborative Model?
- While using WordPress Multisite is it possible to display data to main site from subsites?
- Prevent multisite sites from using a plugin
- Is it possible to run plugin code when a multisite blog is deleted?
- Multi domain, multi sites with different themes and content
- Getting Custom Post Type content from main-site of a Multisite
- How to assign user a role if none is present when logging in
- How do I add a widget programmatically to a newly created site (WPMU) within a plugin?
- Duplicate settings of master blog to slave blogs in WP multi-site installation
- How can a plugin run a script after being updated in MultiSite?
- Network-Wide Plugin Settings Management
- How can I list only sites that use a particular theme or plugin?
- Aggregate Summaries of Posts of Different Blogs in Multisite Instance
- Posts wont expire
- Multisite functions to communicate with individual site functions
- WordPress network: set themes and plugins for new blog
- Is there a way to share content amongst wordpress sites
- I’m trying to create security question field for my login page
- What is the function to get plugin base url in multisite?
- Unique post-id for WordPress Multisite Network
- How to install WordPress Multisite with different domains under the same subdirectory?
- How can I get a list of plugins and which blogs are using them?
- Multiple Domains with Single WordPress Install
- Multisite: Activate plugin for subsites only?
- Duplicate a Multi-Site Subdomain
- How to get last_updated and newest_blogs in WP 3.0
- Error Message from W3 Total Cache when .htaccess Rules Cannot Be Modified? [closed]
- Get list of sites that uses specific plugin or theme
- Setting up a multilingual wordpress site
- Display All Non-Used Plugins
- Multisite mu-plugins site-specific directory
- How to get popular post from across a network?
- How to make sexy bookmarks plugin work in WPMU
- How to setup a Network Plugin across the network with only my settings?
- WordPress language switcher
- Multisite Backup Plugin [closed]
- Having separate plugins and themes folder for multi-site setup
- Automatically adding post and pages to new blog setups
- Creating Custom Roles for use on a WordPress Multi-site Instance?
- Remove filter from WordPress Plugin
- Multisite Widget/Content
- get_option compatible with wordpress network (multisite)?
- Trying to count the total number of paragraphs inside a blog article
- Is it possible to set up multistore in Woocommerce? [closed]
- What Plugin Do You Use to Turn WordPress based site to A Blog Aggregator
- Check if User exists in WordPress Multisite
- Plugin to list active plugins across networked sites
- Exclude plugins on Main site on Multisite installation?
- Cannot access wp-admin after disabling all plugin
- Installing WordPress only for a separate page – ‘mydomain.com/blog’
- How to hide plugin from WordPress Multisite admin plugin list
- Reset WordPress website
- Is the wordpress user-model changed in wpmu?
- WordPress Multisite – get_plugin_data()
- Network: retrieve a list of latest posts
- Error 404 using wpml plugin
- Multisite installation but do plugins always have to be multisite compatible?
- How to define WordPress plugin shortcode globally for multisite?
- Unable to install theme recommended plugins on Multisite
- How to add class in plugin only for network site?
- Convert existing WordPress Site (with several plugins) into Multisite
- Disable multisite-wide plugins on specific sites
- WordPress Multisite plugin delegation
- unregistered user can write in blog page – possible? how to?
- How to make an interface similar to multi-site for switching between multiple (single) sites for administrators?
- How do I tell what plugins are used on my multisite install?
- How to write a plugin to add users to a mail list
- My Category is too big on the Menu what can i do?
- Multisite custom user activation emails – html
- WordPress Multisite user activation hook from email
- Best method to upgrade multisite plugin’s numerous database table
- WordPress on AWS with ELB
- Multiple sites, multiple countries
- Solutions to repost categories into multisite blogs?
- Media is not attached after import
- How can I disable the multisite feature of WordPress 3.0?
- NGiNX + PHP5-fpm + CDN Tools (plugin) [closed]
- Any recommendation on how to manage ads?