codelobster ide

Content management system WordPress – is the best choice for those who have decided to start their own personal blog or portfolio site.

WordPress is actively used by web studios and independent developers, there is a large number of free plug-ins and high-quality design templates for it.

There is an opinion, that it is very difficult to create and maintain large-scale projects by WordPress, as this can cause performance or security problems. But it is too exaggerated.

Does this mean that WordPress is unsuitable for corporate and e-commerce websites? No, of course, since such problems may arise when working with any other CMS if you select the wrong approach to the implementation of the technical part of the project.

Everything depends on the programmer’s skills, and to avoid problems with scaling and support, you can start to write well-documented code.

For each webmaster is important the choice of tools to work to quickly and efficiently add and edit CMS functionality to fit your needs.

Specifically, in order to deal with WordPress, I chose a convenient and light to mastering development environment – Codelobster IDE.

In this article, we shall study the work with the CMS WordPress in Codelobster IDE.

Installing the WordPress using Codelobster Wizard

An interesting and useful feature of my IDE is the ability to automatically deploy the project and start working with WordPress in just a few minutes.

We do not need to look for the official website on the Internet and download the latest stable version of CMS, all care about creating and configuring the site incurs the IDE.

So, let’s begin. We will need the HTTP Apache server and the MySQL database server, I use in this article the set of tools for web development XAMPP.

Run Codelobster and go to the main menu. Then select the menu item “File” -> “New” -> “Project”.

Now we need to fill in the fields in the dialog box. Select the type of project to create – “Create a blank WordPress site”.

codelobster ide – a powerful wordpress ide

 

 

Immediately we come up with a project name and enter it in the “Name of the project” field.

Choose the path to the project, and place it in a directory on the local server for shared files.

 

 

As a result, Codelobster creates a folder named “WordPress-blog” in the directory “htdocs” of the Apache server, and we will be able to manage a website using the URL – “http://localhost/wordpress-blog/”.

Click “OK” and go on.

At this stage, you can enter the address of the remote MySQL server, but our server is running on the local computer, so you can not change anything and go to the next dialog window.

codelobster ide – a powerful wordpress ide1

Now we have to configure our blog. We introduce the name of the site, log in and admin password, as well as e-mail. These data will be used to log in to the admin panel of the blog and management.

If the installation is carried out on remote hosting rather than on the local server, be sure to note the checkbox “Public”, if you want to make enabled indexing of the site by search engine robots.

We’re clicking the “Finish” button and waiting until Codelobster installs WordPress.

codelobster ide – a powerful wordpress ide2

The site is installed and the project opens in the IDE, you can select files to edit in the left panel of the program.

Let’s check how our site works – enter the URL “http://localhost/wordpress-blog/” in your browser.

codelobster ide – a powerful wordpress ide3

As we can see, the site is working fine!

We pass on the link “http://localhost/wordpress-blog/wp-login.php”, enter the administrator user name and password to log into the admin part.

codelobster ide – a powerful wordpress ide4

Now we can manage our site and change the settings, change the subject, for example, or create a new post.

We return to the IDE again, for little editing of our site. Let’s open the header.php file and add a logo instead of the site header.

codelobster ide – a powerful wordpress ide5

The instant hints will help us to deal with the purpose of the set of functions, for this, you just need to put the cursor on the item of interest.

Look for the code string “<?php bloginfo ( ‘name’); ?>” And delete it.

codelobster ide – a powerful wordpress ide6

Instead of deleted snippet of code paste the HTML tag ‘<img src = “/wordpress-blog/wp-content/themes/twentysixteen/images/codelobster-logo-1.jpg” />’, as in the image below.

codelobster ide – a powerful wordpress ide7

The value of the attribute “src” contains the path to our logo. Now save the changes – press the key combination Ctrl + S.

Let’s see what we have achieved. Open a browser to “http://localhost/wordpress-blog/” and refresh the page.

codelobster ide – a powerful wordpress ide8

Wonderful! After we decorated our new blog by adding the logo, we can think about further improvement of the site.

Also, Codelobster has the ability to autocomplete all WordPress methods while coding.

kinsta.com has all the necessary tools not only for programming in PHP but also for editing HTML markup, CSS styles, and JavaScript.