WordPress automatic and permanent page
Yes, that is doable. I don’t know about running scripts immediately after WP installation is complete, but you could implement your idea perhaps with a must-use plugin. First you probably want some kind of way to get the contact page id. A helper function for that, function get_my_contact_page_id() { return get_option( ‘my_contact_page’, 0 ); // … Read more