<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
><channel><title>Featured - WP2X</title> <atom:link href="https://wp2x.com/category/featured/feed/" rel="self" type="application/rss+xml" /><link>https://wp2x.com</link> <description>We can help your Wordpress faster</description> <lastBuildDate>Tue, 16 Sep 2014 14:20:52 +0000</lastBuildDate> <language>en-US</language> <sy:updatePeriod> hourly </sy:updatePeriod> <sy:updateFrequency> 1 </sy:updateFrequency> <generator>https://wordpress.org/?v=5.6.16</generator> <item><title>Create a Simple WordPress Plugin Tutorial</title><link>https://wp2x.com/create-simple-wordpress-plugin-tutorial/</link> <comments>https://wp2x.com/create-simple-wordpress-plugin-tutorial/#comments</comments> <dc:creator><![CDATA[david]]></dc:creator> <pubDate>Thu, 10 Apr 2014 22:19:23 +0000</pubDate> <category><![CDATA[Blog]]></category> <category><![CDATA[Featured]]></category> <category><![CDATA[Wordpress Plugins]]></category> <category><![CDATA[Wordpress Tips]]></category> <category><![CDATA[wordpress development]]></category> <category><![CDATA[wordpress plugin]]></category> <category><![CDATA[wordpress programming]]></category> <guid
isPermaLink="false">http://wp2x.com/?p=138</guid><description><![CDATA[<p>WordPress Plugin &#8216;s quite easy with a lot of fun to get started with it. It just take you 5 minutes to create a simple wordpress plugin with the useful functionality. In this blog post, I will show you a very simple wordpress plugin tutorial with very first step to build a quality wordpress plugin. ...</p><p>The post <a
rel="nofollow" href="https://wp2x.com/create-simple-wordpress-plugin-tutorial/">Create a Simple WordPress Plugin Tutorial</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></description> <content:encoded><![CDATA[<p><strong>WordPress Plugin</strong> &#8216;s quite easy with a lot of fun to get started with it. It just take you 5 minutes to create a <strong>simple wordpress plugin</strong> with the useful functionality. In this blog post, I will show you a very simple <strong>wordpress plugin tutorial</strong> with very first step to build a quality wordpress plugin. After this, you are free to extension unlimited your plugin.<span
id="more-138"></span></p><h2>WordPress Plugin Idea</h2><p>Before building any plugin, we should site down and write all of our requirements to save time and do the right way in coding time. In my simple wordpress plugin idea include:</p><div
class="su-list" style="margin-left:0px"><ul><li><i
class="sui sui-check" style="color:#40dd1b"></i> <strong>Name</strong>: WordPress Simple Shortcode</li><li><i
class="sui sui-check" style="color:#40dd1b"></i> <strong>Description</strong>: implement a custom shortcode what only use for personal purpose</li><li><i
class="sui sui-check" style="color:#40dd1b"></i> <strong>Publication</strong>: for blog post tutorial on wp2x.com</li></ul></div><p>Now, let &#8216;s go with our first wordpress plugin</p><h2>WordPress Plugin Basic File Structure</h2><p>As the minimum requirements, wordpress plugin only need one php file in folder /wp-content/plugins/ but no one do thing like that since it &#8216;s very difficult to maintain. So even though we do a simple wordpress plugin, let &#8216;s learn for future to build a complex plugin. So, the basic wordpress plugin file structure include:</p><ul><li>A folder in /wp-content/plugins/: let &#8216;s create it is <strong>simple-shortcode</strong></li><li>A php file in plugin folder /wp-content/plugins/<strong>simple-shortcode</strong> with the same name as plugin folder, so it should be /wp-content/plugins/<strong>simple-shortcode/simple-shortcode.php</strong></li></ul><div
id="attachment_140" style="width: 262px" class="wp-caption aligncenter"><img
aria-describedby="caption-attachment-140" loading="lazy" class="size-full wp-image-140" src="http://wp2x.com/wp-content/uploads/2014/04/wordpress-plugin-file-structure.png?4b2a2c&amp;4b2a2c" alt="wordpress plugin file structure" width="252" height="92" /><p
id="caption-attachment-140" class="wp-caption-text">wordpress plugin file structure</p></div><h2>WordPress Plugin Header</h2><p>Somehow WordPress need to know the basic information of your wordpress plugin to display in control panel, kind of detail of a plugin. And here is all that needs to be in your plugin file for WordPress to recognize it once uploaded. Let &#8216;s add it as first line in file <strong>simple-shortcode.php</strong><br
/></p><pre class="lang:php decode:true ">&lt;?php
/*
Plugin Name: My Custom Functions
*/</pre><p>See how easy that is? At this point you have a plugin that you can activate in your WordPress plugins area. Of course our plugin doesn’t actually do anything yet but the point is you have laid the foundation of your very own plugin and it was super easy.</p><p>Now there are other elements that you can include in this header. Things like a description, version, author, etc. You can read more about those here: <a
href="http://codex.wordpress.org /Writing_a_Plugin #File_Headers" target="_blank">http://codex.wordpress.org /Writing_a_Plugin #File_Headers</a></p><p>That &#8216;s all to get a new wordpress plugin, let visit your wordpress plugin admin and activate it. Time to build the main function</p><h2>Capture wordpress hooks</h2><p>Keep in mind that to get our plugin optimize, we only execute our action code via wordpress shortcode except some special case. For the most case, we will capture the <strong>init</strong> hook of wordpress. Here is the code.</p><pre class="lang:php decode:true ">add_action( 'init', 'simple_shortcode_register_shortcodes');</pre><p>See, we call function <strong>simple_shortcode_register_shortcodes</strong> when the wordpress system init and we need to define this function.</p><pre class="lang:php decode:true ">function simple_shortcode_register_shortcodes()
{
add_shortcode('my-first-shortcode', 'simple_shortcode_my_first_shortcode');
}</pre><p>Again we add a shortcode with tag <strong>my-first-shortcode</strong> and defined by function <strong>simple_shortcode_my_first_shortcode.</strong> One more time we need to define this function:</p><pre class="lang:php decode:true ">function simple_shortcode_my_first_shortcode($atts, $content){
extract(shortcode_atts(array(
'lastname' =&gt; ''
), $atts));
return "&lt;strong&gt;{$content} {$lastname}";
}</pre><p>&nbsp;</p><p>Ok, it &#8216;s quite simple, for more detail how to define this function you can look at wordpress API <a
href="https://codex.wordpress.org/Function_Reference/add_shortcode" target="_blank">https://codex.wordpress.org/Function_Reference/add_shortcode</a> . And I guess, you will know where to search for WordPress API :-).</p><p>The next step, let &#8216;s test it. Create a new post with this detail:</p> [code]Hello [my-first-shortcode lastname=&#8221;Pham&#8221;]David[/my-first-shortcode][/code]<p>Now, view it on front-end to see the magic.</p><p>And here is the bonus for you if you need more advance about wordpress plugin <a
href="https://codex.wordpress.org/Writing_a_Plugin" target="_blank">https://codex.wordpress.org/Writing_a_Plugin</a></p><p>The post <a
rel="nofollow" href="https://wp2x.com/create-simple-wordpress-plugin-tutorial/">Create a Simple WordPress Plugin Tutorial</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></content:encoded> <wfw:commentRss>https://wp2x.com/create-simple-wordpress-plugin-tutorial/feed/</wfw:commentRss> <slash:comments>8</slash:comments> </item> <item><title>How to choose the best PHP web hosting?</title><link>https://wp2x.com/choose-best-php-web-hosting/</link> <comments>https://wp2x.com/choose-best-php-web-hosting/#comments</comments> <dc:creator><![CDATA[david]]></dc:creator> <pubDate>Sun, 16 Mar 2014 21:17:35 +0000</pubDate> <category><![CDATA[Blog]]></category> <category><![CDATA[Featured]]></category> <category><![CDATA[Wordpress Hosting]]></category> <category><![CDATA[Wordpress Tips]]></category> <category><![CDATA[best wordpress hosting]]></category> <category><![CDATA[hosting]]></category> <category><![CDATA[php hosting]]></category> <category><![CDATA[php web hosting]]></category> <category><![CDATA[top wordpress hosting]]></category> <category><![CDATA[web hosting]]></category> <category><![CDATA[wordpress hosting]]></category> <guid
isPermaLink="false">http://wp2x.com/?p=63</guid><description><![CDATA[<p>In this article we will show you how, why and what is the best PHP web hosting what make your php website work fast , security and best support.</p><p>The post <a
rel="nofollow" href="https://wp2x.com/choose-best-php-web-hosting/">How to choose the best PHP web hosting?</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></description> <content:encoded><![CDATA[<p>Our team work with PHP programming from 2004 with a lot of experience on server side configuration and set up. In this article we will show you how, why and what is the <b>best PHP web hosting</b> what make your php website work fast , security and best support.</p><h2><b>Top 3 PHP Web Hosting Companies</b></h2><p>If you don’t have much time to read to understand all of features and reasons then we have here top #3 candidate PHP web hosting for you, you can choose one of them and I believe you will be happy with their result and service.</p><p
style="padding-left: 30px;"><a
href="http://s.wp2x.com/sg" target="_blank"><b>SiteGround PHP Hosting package</b></a>: <strong>$3.95/month (<span
style="color: #ff0000;">60% OFF now</span>)</strong>, Server SuperCacher  unique features (memcached, proxy cache, apache google speed, Varnish cache …), PHP Security, PHP Multi versions (7 different PHP versions), CDN + Multi server location, Free domain, Free transfer…</p><p
style="padding-left: 30px;"><a
href="http://s.wp2x.com/a2hosting-php" target="_blank"><b>A2 Hosting package</b></a>: <strong>$4.97/month</strong>,  SSDs support, unique SwiftServer platform,  PHP Security, PHP Multi versions, Free domain, Free transfer …</p><p
style="padding-left: 30px;"><a
href="http://s.wp2x.com/hosting24-php" target="_blank"><b>Hosting24 package</b></a>: <strong>$4.84/month</strong>, Free domain, Unlimited disk and bandwidth, PHP Security, CDN, Free domain, Free transfer …</p><p>Many people will ask me why <a
href="http://s.wp2x.com/sg" target="_blank">SiteGround </a>is the first choice?! It &#8216;s just because all of our customers who they host for us get 100% happy with their services. They know exactly what to do when the problem happen and it &#8216;s just what customers want. You always have peace in mind when using them.</p><p><a
href="http://s.wp2x.com/sg" target="_blank"><img
loading="lazy" class="alignnone aligncenter" alt="" src="https://ua.siteground.com/img/banners/general/comfort/468x60.gif" width="468" height="60" /></a></p><p>In the case you want more information about the best PHP web hosting , I will show you all of features needed here:</p><h2><strong>1. PHP compatible and Multi version support</strong></h2><p>A good PHP web hosting provider must support newest PHP version and as many as possible other PHP versions. For this time, at least they support PHP 5.x</p><p>PHP Multi version will help us a lot when we deploy PHP application because some applications only work with a specific PHP version and configuration, so that sometimes you will need to switch between PHP versions.</p><p>As the first option we listed above, <a
href="http://s.wp2x.com/sg" target="_blank">SiteGround</a> support 7 PHP version for user to choose when running their websites. That ‘s nice enough for us and enough to make them different.</p><h2><strong>2. PHP opcode support for PHP web Hosting</strong></h2><p>A <strong>best PHP Web Hosting</strong> can’t miss opcode support in their server set up because it will speed up the performance very much. And who don’t want the fast website?</p><p>Opcode what PHP hosting server can use is <strong>XCache, APC, eAccelerator</strong> …</p><p>If you has ever worked with PHP you will see PHP coding what usually have too many files included in one process call. Let ‘s say we have to include 10 php files in just one process what do a simple work, in this case, the PHP compiler have to parse text and do many complicated steps to get a final binary code what can run directly in PHP interpreter. Opcode was born to save all of steps from PHP code text to binary code, it will compile just one time and then if it detect there are no change in all of files included it will use the last compiled binary code and run it right away. This way it can make site faster <b>10 times</b>, it ‘s really impressive.</p><h2><strong>3. Strong and Friendly control panel</strong></h2><p>Are you working with cPanel before? If yes, then let ‘s require your hosting company support it because it will save you a lot of time if you manage your hosting support what you like to work. And in anyway, you can require the user interface what they are using must friendly enough for you to start a new website in 10 minutes.</p><h2><strong>4. PHP security,  Anti-Spam &amp; Backup</strong></h2><p
style="text-align: center;"><a
href="http://wp2x.com/wp-content/uploads/2014/03/complete-security-php1.jpg?4b2a2c&amp;4b2a2c"><img
loading="lazy" class="aligncenter size-full wp-image-34" alt="complete-security-php1" src="http://wp2x.com/wp-content/uploads/2014/03/complete-security-php1.jpg?4b2a2c&amp;4b2a2c" width="280" height="200" /></a></p><p>The security is the most important for any online business so that the <strong>best PHP web hosting</strong> must cover the risk and cover everything when any problem happen. At least in the bad situation, they must support daily backup what make sure we can recover the old version.</p><p>Many problems can happen in live online business and we have to choose the PHP hosting company who can give us peace in mind to have time to focus to main business instead of spending a lot of time for hosting.</p><p>So in the bottom line, the PHP web hosting company <strong>must support auto backup</strong> or you should say no with them.</p><h2><strong>5. Quick support and PHP Expert support</strong></h2><p>The support quality can be a <b>top of requirements</b> for the most users to choose the best PHP web hosting. It ‘s very crazy if a website down and we can’t do anything to get it up again, so that the quick support will help us a lot to calm down the problem.</p><p>Other than that, we can’t allow the support from stupid guys (the guys from hosting company don’t know anything about techniques, they just stay there, wait and answer a general question), we need a PHP expert, the server and hosting expert who will solve the real problem for us. So that the best PHP web hosting must provide the PHP expert support in quick response time.</p><p>You know, the support response time average from <a
href="http://s.wp2x.com/sg" target="_blank">SiteGround ticket</a> is only <strong>7 minutes</strong>, it &#8216;s really nice response time. And it will be no waiting with phone support. That &#8216;s what we really like their service.</p><h2><strong>6. Multi server location &amp; Global and Famous brand name</strong></h2><p>5 years ago we had chance to work for a customers in UK who already got  his local hosting company to handle their hosting stuffs. I will not say their name here but their name is not famous, and they don’t have too many customers. My customers always think that if they don’t have too many customers they will have much time to take care us. But he ‘s wrong! You know, the big brand name and famous brand name will know how to take care you because they already take care a lot of customers on the world. The big brand name will have a lot of useful tools what need to build and invest for a long time. That ‘s why I highly recommend you choose a global and big brand name in hosting company instead of local hosting provider.</p><h2><strong>7. Dynamic cache support</strong></h2><p
style="text-align: center;"><img
loading="lazy" class="aligncenter size-full wp-image-70" alt="Cache" src="http://wp2x.com/wp-content/uploads/2014/03/cachecachecache.png?4b2a2c&amp;4b2a2c" width="600" height="290" srcset="https://wp2x.com/wp-content/uploads/2014/03/cachecachecache.png 600w, https://wp2x.com/wp-content/uploads/2014/03/cachecachecache-300x145.png 300w" sizes="(max-width: 600px) 100vw, 600px" /></p><p><strong>Memcached, Redis, XCache</strong> …. Or whatever but they should support one of them to make sure we have something faster than FileSystem cache. Maybe you will not focus much in beginning but in the product live website, you will think about it, and it can be late to support later what cost more money. Why don’t we choose it from the first step?</p><h2><strong>8. PHP Application &amp; PHP Extensions support: WordPress, Joomla, Magento …</strong></h2><p>By supporting many useful and popular PHP extensions what are required by popular applications like wordpress, Joomla, Magento … the <strong>PHP web hosting</strong> can handle all of them in very smooth working. Other than that, they need to support RAM and CPU resource enough for resource consume. If you want to use PHP for specific application then please ask them support them or not before buying the hosting package.</p><h2><strong>9. Linux OS</strong></h2><p>PHP must be built and run on Linux OS like <strong>CentOS, Ubuntu, Red Hat</strong> … or any Unix base OS because PHP are designed and work best on Linux. If you get a PHP hosting provider but the OS is Window then you should look at their profile about hosting before choosing them.</p><p>Thank you and welcome your comment!!!</p><p>The post <a
rel="nofollow" href="https://wp2x.com/choose-best-php-web-hosting/">How to choose the best PHP web hosting?</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></content:encoded> <wfw:commentRss>https://wp2x.com/choose-best-php-web-hosting/feed/</wfw:commentRss> <slash:comments>28</slash:comments> </item> <item><title>Get started with WordPress quickly?</title><link>https://wp2x.com/get-started-with-wordpress-quickly/</link> <comments>https://wp2x.com/get-started-with-wordpress-quickly/#comments</comments> <dc:creator><![CDATA[david]]></dc:creator> <pubDate>Sat, 21 Dec 2013 10:51:05 +0000</pubDate> <category><![CDATA[Blog]]></category> <category><![CDATA[Featured]]></category> <category><![CDATA[Wordpress Tips]]></category> <guid
isPermaLink="false">http://wp2x.com/?p=7</guid><description><![CDATA[<p>To get started with Wordpress, we just need 10 minutes to play around with it and then you are free to implement you idea to get success.</p><p>The post <a
rel="nofollow" href="https://wp2x.com/get-started-with-wordpress-quickly/">Get started with WordPress quickly?</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></description> <content:encoded><![CDATA[<p>To <strong>get started with WordPress</strong>, you don&#8217;t need too much work and computer experience, it &#8216;s quite easy for beginner and it just take you 10 minutes to have a WordPress site ready to go.</p><p>In this blog post, I will share you the flow with step by step to set up a WordPress site in easiest ways. In additional,  you will have idea about where to find themes and plugins for your site. Now let &#8216;s get started with WordPress!!!</p><h2>1. Get started with WordPress: are you a Developer or a Webmaster?</h2><p>If you are a PHP developer then you have the skills what &#8216;s more than enough to do these steps, so that you only need to know what steps needed and where is the URLs you need to bookmarks for later usage to save your time.</p><p
style="text-align: center;"><div
class="su-note note-extra-cls"  style="border-color:#164212;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;"><div
class="su-note-inner su-u-clearfix su-u-trim" style="background-color:#305c2c;border-color:#fcfff8;color:#e1e9d5;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;"><span
style="color: #ff0000;">NOTICE</span>: If you are a VERY BUSY business man and you want to have the wordpress right away with everything ready to save your time then the perfect choice for you is <a
href="http://s.wp2x.com/wpengine" target="_blank">Managed WordPress Hosting Service</a>. It will include hosting, theme, plugin and maintenance service in one package and get your business online right away. In this case we highly recommend you try <a
href="http://s.wp2x.com/wpengine" target="_blank">WPEngine.com</a></div></div><p>If you are a Webmaster/Newbie who are not familiar with server, programming, PHP &#8230; you only use Graphic User Interface with click, drag and drop then it would be nice for you to read more careful my post. So let &#8216;s go!</p><h2><strong>2. Install &amp; Get WordPress ready quickly</strong></h2><p>There are 3 options what people usually go with it when they use wordpress:</p><h3 style="padding-left: 30px;"><strong>2.1 Use Free service from WordPress.com</strong></h3><p
style="padding-left: 30px;">This solution is used for people who just want to look at the WordPress Admin UI and try to figure out that WordPress match with their need or not. So let me show you, It will not take you more than 5 minutes to sign up and set up at <a
href="https://wordpress.com" target="_blank">https://wordpress.com</a> a brand new wordpress site. After having account on wordpress.com, you just need to click <strong>&#8220;My Blogs&#8221;</strong> and then <strong>&#8220;Create Another Blog&#8221;, </strong>everything should be easy for you from now or if you can&#8217;t manage to do it, please leave us a comment, we will help you as soon as possible.</p><p
style="padding-left: 30px; text-align: center;"><img
loading="lazy" class="aligncenter size-medium wp-image-47" src="http://wp2x.com/wp-content/uploads/2013/12/create-blog-on-wordpress.com_-300x248.png?4b2a2c&amp;4b2a2c" alt="create blog on wordpress.com" width="300" height="248" srcset="https://wp2x.com/wp-content/uploads/2013/12/create-blog-on-wordpress.com_-300x248.png 300w, https://wp2x.com/wp-content/uploads/2013/12/create-blog-on-wordpress.com_.png 335w" sizes="(max-width: 300px) 100vw, 300px" /></p><p
style="padding-left: 30px;">This is a fastest way to get a wordpress site up and run but you will be limited in the WordPress Cloud Hosting with theme, plugin, disk space, bandwidth&#8230;. you can&#8217;t install your custom plugin, theme or customize the source code. So this is only for beginner who want to see the UI and make a simple blog.</p><h3 style="padding-left: 30px;"><strong>2.2 Self-Host WordPress Site</strong></h3><p
style="padding-left: 30px;">The <strong>Self-Host WordPress Site</strong> is the way to host your wordpress site on your own hosting to customize whatever we need. This is advance solution for people who can work with FTP, cPanel, PHP programming, Database management &#8230;. at least you know what is it. If you are on way to find a developer or you are a developer and you want to get started with wordpress and develop it, this is the best choice for you.</p><p
style="padding-left: 30px;">You still have way to get WordPress ready very fast with Self-Host WordPress by choosing the WordPress Hosting company who support one-click install WordPress. As our team experience you can go with <strong><a
href="http://s.wp2x.com/sg" target="_blank">SiteGround WordPress Hosting package</a> ( $3.95/month)</strong> or <strong><a
href="http://s.wp2x.com/a2hosting" target="_blank">A2 Hosting WordPress package</a> ( $4.97/month)</strong>, they are both high quality WordPress Hosting with one-click wordpress installation and very quick ticket/phone support. Let &#8216;s buy one of those hosting packages and login to their cPanel to set up WordPress.</p><p
style="padding-left: 30px;">Here is the instruction if you buy <a
href="http://s.wp2x.com/sg" target="_blank"><strong>SiteGround WordPress Hosting package</strong></a>:</p><p
style="padding-left: 30px;">Login to cPanel and click the WordPress icon</p><p
style="padding-left: 30px; text-align: center;"><a
href="http://s.wp2x.com/a2hosting" target="_blank"><img
loading="lazy" class="aligncenter size-medium wp-image-48" src="http://wp2x.com/wp-content/uploads/2013/12/wordpress-install-one-click-300x171.png?4b2a2c&amp;4b2a2c" alt="wordpress install-one-click" width="300" height="171" srcset="https://wp2x.com/wp-content/uploads/2013/12/wordpress-install-one-click-300x171.png 300w, https://wp2x.com/wp-content/uploads/2013/12/wordpress-install-one-click.png 458w" sizes="(max-width: 300px) 100vw, 300px" /></a></p><p
style="padding-left: 30px; text-align: left;">Click <strong>&#8220;Install&#8221;</strong> to start install wordpress</p><p
style="padding-left: 30px; text-align: center;"><a
href="http://s.wp2x.com/a2hosting" target="_blank"><img
loading="lazy" class="aligncenter size-medium wp-image-49" src="http://wp2x.com/wp-content/uploads/2013/12/install-wordpress-300x161.png?4b2a2c&amp;4b2a2c" alt="install wordpress" width="300" height="161" srcset="https://wp2x.com/wp-content/uploads/2013/12/install-wordpress-300x161.png 300w, https://wp2x.com/wp-content/uploads/2013/12/install-wordpress.png 452w" sizes="(max-width: 300px) 100vw, 300px" /></a></p><p
style="padding-left: 30px; text-align: left;">Then enter your blog information you need and <strong>&#8220;Install&#8221;</strong>, you will have a wordpress site ready to play around in 1 minute <img
src="https://s.w.org/images/core/emoji/13.0.1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p><h3 style="padding-left: 30px; text-align: left;"><strong>2.3 Managed WordPress Hosting Services</strong></h3><p
style="padding-left: 30px; text-align: left;">If you don&#8217;t have much time, you don&#8217;t want to spend time for development, you don&#8217;t want to hire a developer, you want to have a WordPress right away with everything to publish a fast, professional look and feel then you need to go with <strong>Managed WordPress Hosting Service</strong>. It will cover everything for you to get your wordpress site up and running include hosting, domain, development and maintenance. You don&#8217;t have to do anything, you are free to focus to the main content, the main business.</p><p
style="padding-left: 30px; text-align: left;">So if you choose a Managed WordPress Hosting, I am pretty sure that no one better than <a
href="http://s.wp2x.com/wpengine" target="_blank">wpengine.com</a>, they are very professional in this industry with high trust server and wordpress expert.</p><p
style="padding-left: 30px; text-align: center;"><div
class="su-button-center"><a
href="http://s.wp2x.com/wpengine" class="su-button su-button-style-default" style="color:#ffffff;background-color:#56ef2d;border-color:#45c024;border-radius:7px" target="_blank" rel="noopener noreferrer"><span
style="color:#ffffff;padding:7px 20px;font-size:16px;line-height:24px;border-color:#89f46c;border-radius:7px;text-shadow:none"><i
class="sui sui-play-circle" style="font-size:16px;color:#FFFFFF"></i> Visit WPEngine.com</span></a></div><h2><strong>3. Create the first post</strong></h2><p>Let &#8216;s enjoy your first wordpress site with the first post. To start the first post, you need to login to admin panel of wordpress -&gt; in left menu click <strong>Posts =&gt; Add New</strong></p><p
style="text-align: center;"><img
loading="lazy" class="aligncenter size-full wp-image-53" src="http://wp2x.com/wp-content/uploads/2013/12/new-post.png?4b2a2c&amp;4b2a2c" alt="new post" width="186" height="202" /></p><p
style="text-align: left;">Enter the title and body then click &#8220;Publish&#8221; to have your first post online.</p><h2>4. Search and install WordPress Theme</h2><p>Let &#8216;s try to install a new theme in theme collection online to see what style you can use. Now click menu <strong>Appearance =&gt; Themes</strong></p><p
style="text-align: center;"><img
loading="lazy" class="aligncenter size-medium wp-image-54" src="http://wp2x.com/wp-content/uploads/2013/12/themes-300x122.png?4b2a2c&amp;4b2a2c" alt="themes" width="300" height="122" srcset="https://wp2x.com/wp-content/uploads/2013/12/themes-300x122.png 300w, https://wp2x.com/wp-content/uploads/2013/12/themes.png 324w" sizes="(max-width: 300px) 100vw, 300px" /></p><p
style="text-align: left;">Then you click &#8220;Add New&#8221; to search theme you need or upload the theme from your computer (I will talk about wordpress themes installation more in another post).</p><p
style="text-align: left;">After choosing your theme, let &#8216;s activate it and look at front end to see the new change.</p><p
style="text-align: left;">To have more information about free wordpress theme, let &#8216;s visit here <a
href="http://wordpress.org/themes/" target="_blank">http://wordpress.org/themes/</a>, I believe you can find the very good wordpress theme match with your need from it for free. Just like me :-). Make sure you search the free wordpress theme before wasting your money to any wordpress theme development.</p><h2><strong>5. Search and install WordPress plugin</strong></h2><p
style="text-align: left;"> Just like install new theme, you can install plugin for wordpress is quite easy. Visit menu <strong>Plugins =&gt; Add New</strong></p><p
style="text-align: center;"><img
loading="lazy" class="aligncenter size-medium wp-image-55" src="http://wp2x.com/wp-content/uploads/2013/12/plugins-300x128.png?4b2a2c&amp;4b2a2c" alt="plugins" width="300" height="128" srcset="https://wp2x.com/wp-content/uploads/2013/12/plugins-300x128.png 300w, https://wp2x.com/wp-content/uploads/2013/12/plugins.png 318w" sizes="(max-width: 300px) 100vw, 300px" /></p><p
style="text-align: left;">Now let &#8216;s search or upload your plugin to install and activate it. To have more information about all of plugins ready on WordPress community you can find it here <a
href="http://wordpress.org/plugins/" target="_blank">http://wordpress.org/plugins/</a>. My experience is you should search before doing any coding about wordpress function because almost functions are implemented ready for free from community.</p><p
style="text-align: left;">Until this step you already control the important part of worpdress and easy to get started with other steps.</p><p
style="text-align: left;">Good luck and welcome any comment!!!</p><p>&nbsp;</p><p>The post <a
rel="nofollow" href="https://wp2x.com/get-started-with-wordpress-quickly/">Get started with WordPress quickly?</a> appeared first on <a
rel="nofollow" href="https://wp2x.com">WP2X</a>.</p> ]]></content:encoded> <wfw:commentRss>https://wp2x.com/get-started-with-wordpress-quickly/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> </channel> </rss>