Hi! Welcome...

Wp Starter I'm Cristian Dorobantescu, Founder and CEO of Axilus Services - a startup company doing mobile apps. wp-starter.com is my 2 cents for the Wordpress community - articles, tutorials and resources.

11 June 2013 ~ 0 Comments

Moving a WordPress site from a folder to the root

Sometimes you need to move a WordPress site from a folder to the root. Why would you move a WordPress site from a folder to the root? Well, in some cases, WordPress has been installed into a folder, and the root was redirected to that folder via htaccess. Google doesn’t like empty roots… So for [...]

26 May 2013 ~ 0 Comments

How to copy a WordPress site to a local computer

Sometimes you might need to copy a live WordPress site from the server to your local Windows PC to do some tweaking for a client. In this tutorial I will show all the necessary steps to copy the WordPress installation and make notes on things that might go bad along the way. I assume you [...]

21 May 2013 ~ 0 Comments

How to remove the read more link in posts

There are cases where you want just a section of the content to appear on the home or category page and that people should click on a link to read the rest of the article. The default WordPress behavior is that if you insert  the “read more tag” into the content it will split the [...]

12 October 2011 ~ 1 Comment

SEO for your WordPress blog

In this tutorial you will learn the basic SEO rules to follow when adding posts to your WordPress blog and how to use YOAST WordPress SEO plugin to optimize the blog content. Basic SEO rules for your WordPress blog If you’re reading this you probably already heard about SEO and you want to get a [...]

02 October 2011 ~ 5 Comments

How to add Google Sitemaps to your WordPress blog

In this tutorial you will learn how to automatically generate and submit a sitemap to Google Webmaster Tools from your WordPress installation. Once your site is up and running you might want to take some steps to optimize the site for search engines so you could get some more traffic. But before you start learning [...]

05 June 2011 ~ 3 Comments

How to restrict users access to certain posts in WordPress

In this tutorial I will show you how easy is to create posts that are restricted to the general public and only available for users belonging to a specific category. To do this, we need 3 things: a way to mark a post as being available to a specific category of users a way to [...]

25 May 2011 ~ 8 Comments

How to display content from the database in your WordPress plugin

Let’s say you’re building a plugin that needs to display a list of database entries in a special page in the WordPress dashboard. Something that looks like this:   I have covered previously how to create a new page in the WordPress admin dashboard so let’s see now how you can select the database content [...]

20 May 2011 ~ 4 Comments

How to find the URL to the plugins folder when creating a plugin

If you’re building a plugin, you will probably get to the point where you would like to include files from the plugin folder. As building a plugin means the code should work no matter how the blog is configured, you should use a function that retrieves the path to the plugin folder, then hardcode only [...]

29 March 2011 ~ 7 Comments

Creating a WordPress Posts Separator

Do you want to make a separator between posts in WordPress (and don’t know how to handle the last post case where you don’t need to show the separator?) This requires a bit of coding, but it’s quite easy to do. There are a few steps needed to create a WordPress posts separator: identify what [...]

19 March 2011 ~ 1 Comment

Adding a form to the WordPress admin to save new options

In one of the previous tutorials I have shown how to create a new page in the WordPress Admin dashboard where you can create additional settings fields. If you followed that tutorial, you probably now have an empty page that shows in the WordPress admin menu. In this tutorial I will explain how to create [...]