Max number of sub folders

Do you mean nested pages? pages_content_1 (page with content, parent↓) pages_content_2 (page with content, child of above, parent↓) pages_content_3 (page with content, child of above, parent↓) pages_content_4 (page with content, child of above) If so, I don’t believe there is a limit. The URL would be http://example.com/pages_content_1/pages_content_2/pages_content_3/pages_content_4 I’m not sure what you mean by /{category}/{tag}/page_content, … Read more

Multisite + wp_mail – Route Via Site Conditionally

Well, I guess this works: Note: I’m using Postman SMTP; for the example below to work, I imagine that you have to have your server/transactional email delivery service properly configured for each respective ‘from’ email function conditional_multisite_wp_mail( $post_id, $post, $update ) { $to1 = ‘[email protected]’; $to2 = ‘[email protected]’; $subject1 = ‘SPECIFIC: testing right meow’; $subject2 … Read more

Country-specific content

Creating a multisite would be the most efficient approach in this scenario. You could have a structure like this: —> example.com —> example.com/chile —> example.com/argentina —> example.com/mexico The benefit of a multisite is that it’s easy to separate all your content from the beginning. And you can use a plugin like Multisite Post Duplicator to … Read more