Comment reporting for Multisite
(Copy from comment to make the solution appear in our search results) Use the Report Comments Plugin from Dagon Design.
(Copy from comment to make the solution appear in our search results) Use the Report Comments Plugin from Dagon Design.
WordPress multisite sounds exactly like what you are looking for. It takes a little work to get multisite set up, but once that’s done, the options for allowing anybody to register and create a new site are built right in. See http://codex.wordpress.org/Create_A_Network for setting up a multisite instance.
Not sure if this is want you are looking for, but one approach could be hiding the registration altogether for all user, but the users from countries and territories you need. Here is a plugin I’ve been checking out myself, but I must admit, I haven’t used it on a production site yet. It looks … Read more
Perhaps you might be able to achieve your goal by combining the feeds of the posts you are interested and create a new feed this way? That’s what I did for a multisite setup. In this setup I created a page template which would load the rss feed which I created using Simple Pie (to … Read more
Try wpengine.com, they seem to be WordPress-addicted enough to provide, what you need 🙂
In your .htaccess file in the main “https://wordpress.stackexchange.com/” directory, put: # This allows you to redirect index.html to a specific subfolder Redirect /index.html http://example.com/en/
http://codex.wordpress.org/Create_A_Network#Permalinks /blog cannot be used as a new site name. It is relied on heavily by WP for the main site. Everything added to it automatically has /blog as part of the permalink from my understanding You can check out this discussion http://wordpress.org/support/topic/root-directory-blog-for-wordpress-30-main-multisite to see if it helps you out, gives some further options. The … Read more
By deafault, any sub-site is open to public. You would need to add code to check if a user is logged in. And if user is logged in, does he have the right priviliges? What I would do, is to create one new role for each sub-site. Then when a new user registers, I would … Read more
You should have a look at AtomPub. AtomPub allows you to connect to your blog with an AtomPub-enabled client and publish, update and delete posts and media files remotely, without needing to log in to the administration section directly.
Try to use the has_post_thumbnail function. From the codex: <?php //This must be in one loop if(has_post_thumbnail()) { the_post_thumbnail(); } else { echo ‘<img src=”‘.get_bloginfo(“template_url”).’/images/img-default.png” />’; } ?>