- Export content of your existing WordPress installations from Dashboard=> Tools=> Export
- Install WordPress
- Activate Multisite by adding define(‘WP_ALLOW_MULTISITE’, true); in your wp-config.php
- Open Dashboard of your new WordPress installation.
- Open Tool=> Network Setup from Dashboard and do as directed.
- Create blog for each site you like to import.
- Import each site’s content you exported from old installations from Dashboard=> Tools=> Import
- Install all themes and plugins of your old site if you like and network activate them.
- If your old installations have their own domain names then Map domains to your main site using MU Domain Mapping
Tag Archives: WordPress
Embedding RSS Feed In Your WordPress Posts And Pages
Open Your themes function.php and add the following code at the bottom:
include_once(ABSPATH.WPINC.’/rss.php’);
function readRss($atts) {
extract(shortcode_atts(array(
“feed” => ‘http://‘,
“num” => ‘1’,
), $atts));return wp_rss($feed, $num);
}add_shortcode(‘rss’, ‘readRss’);
Save function.php and whenever you need to embed RSS in any of your post or page write the following short code inside your post:
[ rss feed=”https://sangkrit.net/feed” num=”5″ ]
In the above give short code replace https://sangkrit.net/feed with your feed address and in num=5 replace 5 with the number of posts you like to show.
Note: Remember there is no space between [ and rss feed and num=”5″ and ] so after you copy the short code; check the space, remove it (if there is some space) and then publish it.
Tips For Successful WordPress Site Submission To Search Engine
- You can submit your site to search engines through many resources. You may do so manually. Whatever method you choose search engine welcomes the site if your content is good.
- Search engine scans all content whenever a site is submitted. So be sure about content, it should be there in your site.
- Your site should have at least 9 posts so that search engine can get something to examine and evaluate.
- Never submit your site to same search engine more than once a month. Never let a search engine note your anxiousness.
- Always be ready to copy-paste or write a brief description of your site in about 200 words.
- Submit those categories that belong to search engine’s directory.
- Keep a list of your website’s various “addresses/URLs” .
- You can submit your site’s root directory, various categories and feeds to search engines. This expands your search coverage.
- Keep a track of what you have submitted and when to avoid random re submission.
