Solutions | CodeRevolution - Autoblogging WordPress Plugins https://coderevolution.ro Earn more passive income by fueling your WordPress autoblogs with the right plugins! Tue, 28 Jul 2020 13:51:22 +0000 en-US hourly 1 https://coderevolution.ro/wp-content/uploads/2018/07/72.png Solutions | CodeRevolution - Autoblogging WordPress Plugins https://coderevolution.ro 32 32 How to fix the misspelling of WordPress in your post’s content? https://coderevolution.ro/solution/how-to-fix-the-misspelling-of-wordpress-in-your-posts-content/ https://coderevolution.ro/solution/how-to-fix-the-misspelling-of-wordpress-in-your-posts-content/#respond Tue, 28 Jul 2020 13:50:29 +0000 https://coderevolution.ro/?post_type=solution&p=5584 Add the following function into your newly written plugin (or functions.php file of your theme), to correct misspellings of wordpress to WordPress:   function thefirst_content_replace( $content ) {     return str_replace( ‘wordpress’, ‘WordPress’, $text ); } add_filter( ‘the_content’, ‘thefirst_content_replace’ );   thefirst_content_replace is the unique name we’ve given our function. When adding new functions never start […]

The post How to fix the misspelling of WordPress in your post’s content? first appeared on CodeRevolution - Autoblogging WordPress Plugins.]]>
https://coderevolution.ro/solution/how-to-fix-the-misspelling-of-wordpress-in-your-posts-content/feed/ 0
How to Get All Users With a Specific Role https://coderevolution.ro/solution/how-to-get-all-users-with-a-specific-role/ https://coderevolution.ro/solution/how-to-get-all-users-with-a-specific-role/#respond Sun, 21 Jun 2020 09:25:55 +0000 https://coderevolution.ro/?post_type=solution&p=5472 This WordPress tutorial shows you how to get all users with a specific role. This can be used for mass emailing subscribers, mass changing user roles, or whatever your developing heart desires! Sometimes as a WordPress plugin developer you want to get all of the users with a specific role. For example, maybe you want […]

The post How to Get All Users With a Specific Role first appeared on CodeRevolution - Autoblogging WordPress Plugins.]]>
https://coderevolution.ro/solution/how-to-get-all-users-with-a-specific-role/feed/ 0
How to Hide Your Plugin’s Custom Fields https://coderevolution.ro/solution/how-to-hide-your-plugins-custom-fields/ https://coderevolution.ro/solution/how-to-hide-your-plugins-custom-fields/#respond Sun, 21 Jun 2020 09:21:59 +0000 https://coderevolution.ro/?post_type=solution&p=5468 This tutorial shows you how to keep your plugin’s custom fields from being manually edited in the post editor. Very handy, and it keeps things nice and neat! Many plugins use custom fields to store data about individual posts. When a plugin adds a custom fields, its key and value (or name and value) are […]

The post How to Hide Your Plugin’s Custom Fields first appeared on CodeRevolution - Autoblogging WordPress Plugins.]]>
https://coderevolution.ro/solution/how-to-hide-your-plugins-custom-fields/feed/ 0
PHP string processing functions class https://coderevolution.ro/solution/php-string-processing-functions-class/ https://coderevolution.ro/solution/php-string-processing-functions-class/#respond Mon, 06 Apr 2020 07:56:48 +0000 https://coderevolution.ro/?post_type=solution&p=5173 One of the most common things any programmer will have to do is work with strings. Whether it be validating, checking value or sanitizing. Something I find helpful is to wrap functionality in classes so I can easily reuse them later. Here are a few string functions that I’ve found helpful. Don’t hesitate to comment […]

The post PHP string processing functions class first appeared on CodeRevolution - Autoblogging WordPress Plugins.]]>
https://coderevolution.ro/solution/php-string-processing-functions-class/feed/ 0
FTP Permissions & Ownership Tutorial https://coderevolution.ro/solution/ftp-permission-ownership/ https://coderevolution.ro/solution/ftp-permission-ownership/#respond Fri, 03 Apr 2020 11:07:46 +0000 https://coderevolution.ro/?post_type=solution&p=5158 Note: the commands in this document strongly resemble the UNIX commands chmod and chown. They are not those commands, and if you mistakenly use those commands on your FTP files and directories, you will break your FTP site. Permissions What is an anonymous user? What is an authorized user? What Are Permissions? How Do I Tell […]

The post FTP Permissions & Ownership Tutorial first appeared on CodeRevolution - Autoblogging WordPress Plugins.]]>
https://coderevolution.ro/solution/ftp-permission-ownership/feed/ 0
PHP FTP Class https://coderevolution.ro/solution/php-ftp-class/ https://coderevolution.ro/solution/php-ftp-class/#respond Tue, 31 Mar 2020 10:53:15 +0000 https://coderevolution.ro/?post_type=solution&p=5148 One of the many common things we do as PHP developers is ftp files from one server to another. There are many times when I have needed this functionality and PHP has a wonderful API for ftp. Here is a quick wrapper class that I wrote that encapsulates much of the functionality for ftp: <?php […]

The post PHP FTP Class first appeared on CodeRevolution - Autoblogging WordPress Plugins.]]>
https://coderevolution.ro/solution/php-ftp-class/feed/ 0
CSS Advanced Tutorial https://coderevolution.ro/solution/css-advanced-tutorial/ https://coderevolution.ro/solution/css-advanced-tutorial/#respond Mon, 23 Sep 2019 19:06:03 +0000 https://coderevolution.ro/?post_type=solution&p=4043 CSS ID vs CSS Class CSS allows you to specify your own selectors called “id” and “class”. CSS Class and CSS ID allow you to structure and display your site and information the way you want. Class and ID names are both case sensitive. It is very important for you to know everything regarding ID […]

The post CSS Advanced Tutorial first appeared on CodeRevolution - Autoblogging WordPress Plugins.]]>
https://coderevolution.ro/solution/css-advanced-tutorial/feed/ 0
CSS Basic Tutorial – part 2 https://coderevolution.ro/solution/css-basic-tutorial-part-2/ https://coderevolution.ro/solution/css-basic-tutorial-part-2/#respond Mon, 23 Sep 2019 18:54:28 +0000 https://coderevolution.ro/?post_type=solution&p=4041 CSS Background No matter if you are a beginner or a professional in CSS or simply want to upgrade your professional skills to turn yourself into an expert, learning to set free backgrounds CSS can help your cause a lot. Remember, the background CSS adds tremendously to the look and feel of a website and […]

The post CSS Basic Tutorial – part 2 first appeared on CodeRevolution - Autoblogging WordPress Plugins.]]>
https://coderevolution.ro/solution/css-basic-tutorial-part-2/feed/ 0
CSS Basic Tutorial – part 1 https://coderevolution.ro/solution/css-basic-tutorial-part-1/ https://coderevolution.ro/solution/css-basic-tutorial-part-1/#respond Mon, 23 Sep 2019 18:25:40 +0000 https://coderevolution.ro/?post_type=solution&p=4039 CSS Introduction If you are looking for CSS introduction tutorial and basic CSS beginner tutorials, this is the place where you will get not only basic CSS tutorial but advanced CSS tutorials also. Our free introduction to CSS with CSS examples will give you best CSS layouts tutorials, Dreamweaver CSS tutorials, CSS menu tutorials, Joomla […]

The post CSS Basic Tutorial – part 1 first appeared on CodeRevolution - Autoblogging WordPress Plugins.]]>
https://coderevolution.ro/solution/css-basic-tutorial-part-1/feed/ 0
jQuery Tutorial https://coderevolution.ro/solution/jquery-tutorial/ https://coderevolution.ro/solution/jquery-tutorial/#respond Mon, 23 Sep 2019 18:20:20 +0000 https://coderevolution.ro/?post_type=solution&p=4037 What is jQuery? jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. In case, you are interested in learning jQuery tutorials with the help of most practical and useful jQuery demos and jQuery examples, this is the best place for you. […]

The post jQuery Tutorial first appeared on CodeRevolution - Autoblogging WordPress Plugins.]]>
https://coderevolution.ro/solution/jquery-tutorial/feed/ 0