How to Add Your Plugin to the WordPress Plugin Directory

[agentsw ua=’pc’]

Would you like to add a plugin you created to the WordPress Plugin Directory?

Contributing useful plugins to the directory is just one of the ways you can give back to the WordPress community.

In this article, we will discuss the benefits of adding your plugin to the WordPress Plugin Directory along with a step by step guide on how to add your plugin to the repository.

add plugin to wordpress plugin directory og

Why Add Your Plugin to the WordPress Plugin Directory?

If you have created a WordPress plugin that you think would be useful to others, then you should consider adding it to the official WordPress Plugin Directory. This has lots of benefits for you as a developer.

The WordPress Plugin Directory is the first place many users go when looking for plugins for their WordPress website. Adding your plugin to the directory will make it easier for users to find, and give you greater credibility as a developer.

You won’t have to pay for the bandwidth required to download your plugin, and the directory will automatically keep track of how many people have downloaded it and will notify them when there is an upgrade.

The directory will also help you support the plugin. Users can rate your plugin, leave feedback and bug reports, and make use of the support forum.

AIOSEO Plugin Support Forum

Of course, there are also some requirements and restrictions. The first is that your plugin must have a license that’s compatible with WordPress. GPLv2 or later is recommended.

There are also some ethical considerations to keep in mind. The plugin mustn’t do anything illegal or morally offensive, and you can’t include links to external websites without first getting the users’ permission.

After you submit the plugin, it will be manually reviewed for common errors and to make sure you have followed the plugin directory guidelines. That process can take between 1 and 10 days.

With that being said, let’s have a look at how to add your plugin to the WordPress Plugin Directory step by step.

Creating a readme.txt File for Your Plugin

The first thing you need to do is create a ‘Read Me’ file for your plugin. This will be displayed on your plugin’s page in the directory and needs to use the right formatting.

Here is a sample file you can use as a starting point. You will need to paste it into your text editor and save the file as readme.txt in your plugin folder.

=== Your Plugin Name ===

Contributors: Your WordPress.org Username
Tags: wpbeginner, plugin tutorial
Requires at least: 5.5
Tested up to: 5.8
Stable tag: 1.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
 
A WordPress plugin to teach beginners how to write a WordPress plugin. 
 
== Description ==
 
This simple plugin is part of our beginner's guide to writing a WordPress plugin. 
 
== Installation ==
 
1. Upload the plugin folder to your /wp-content/ folder.
1. Go to the **Plugins** page and activate the plugin.
 
== Frequently Asked Questions ==
 
= How do I use this plugin? =
 
Answer to the question
 
= How to uninstall the plugin? =
 
Simply deactivate and delete the plugin. 
 
== Screenshots ==
1. Description of the first screenshot. 
1. Description of the second screenshot. 
 
== Changelog ==
= 1.0 =
* Plugin released. 

You’ll need to customize the file for your own plugin, so we’ll explain how the WordPress plugin readme file syntax works.

The first line is the ‘Plugin Name’ and will appear in the WordPress Plugin Directory as your plugin’s title.

The next line is ‘Contributors’. These are the WordPress.org user IDs responsible for managing your plugin. If you don’t already have a user ID, then you’ll need to create a free WordPress.org user account.

The ‘Requires at least’ and ‘Tested up to’ fields refer to the WordPress versions your plugin works with. The ‘Stable tag’ is the version of your own plugin.

You can leave the License fields the same. Then, you should edit the ‘Description’ area to explain what your plugin does.

After editing your plugin’s readme file, don’t forget to save your changes. It’s also a good idea to run the file through the official Readme Validator and address any issues that are identified.

Finally, you should right click on your plugin folder and create a zip file. Mac users should select ‘Compress pluginname’ and Windows users can select ‘Send to » Compressed (zipped) folder’.

Creating Zip File of Your Plugin Folder

Submitting Your Plugin to the Directory for Review

Now your plugin is ready to be reviewed by WordPress.org’s plugins team.

To submit it, visit the Add Your Plugin page. If you are not already logged in, then click on the login button at the top right corner of the screen.

Login to WordPress.org

Once logged in, you’ll be able to upload and submit your plugin for review.

Simply click on the Select File button to select your plugin’s zip file, and then click on the Upload button.

Upload Your WordPress Plugin for Review

The WordPress.org plugin review team will then take a look at your plugin code for common errors and security checks. Once approved, you’ll receive an email from the plugins team.

This email will contain a link to the Subversion (SVN) repository where your plugin will be hosted on WordPress.org. You will need to use this link when you upload your plugin.

Uploading Your Plugin Using Subversion (SVN)

Once your plugin is approved, you will need to use Subversion (SVN) to upload the plugin.

Subversion is an open source version control system. It allows users to make changes to files and directories while keeping a record of changes, managing different versions, and collaborating with other users.

You’ll need an SVN client installed on your computer to upload your plugin. Windows users can use SilkSVN or TortoiseSVN (free). Mac users can install SmartSVN or the Versions app on their computers.

In this article, we will use the Versions app for Mac. However, the process is very similar in all the SVN apps listed above.

Once installed, you need to open the Versions app and check out a copy of your WordPress plugin’s repository. To do that, simply click on the ‘New Repository Bookmark’ button.

New Repository Bookmark

This will bring up a popup where first you need to provide a name for this bookmark. You can name it after your plugin. After that, you need to add your WordPress plugin’s SVN repository URL.

You can leave the username and password fields blank.

Connect Your Repository

Now you should click the Create button. Versions will connect with your repository and download a copy of your plugin’s repository to your computer.

Next, you need to right click on the repository name in the browser view and then select ‘Checkout’.

Check out your repository

You will be asked to provide a name for the folder and select a location where you want to store it on your computer. You can use the same folder name as your plugin directory and click on checkout button to continue.

The Versions app will now create the folders needed for your plugin on your computer. You can view it under your plugin’s repository or browse it in Finder.

Show Local Repository in Finder

Now you need to copy your plugin files and paste them inside the trunk folder of your local repository.

As you do that, you will notice a question mark icon next to new files in the Versions app.

Since these files didn’t exist before, you need to add them. Select the new files and click on the Add button to add these files to your local folder.

Add Files

Now that your plugin files are added into Subversion, you are ready to upload them. You do this by syncing changes in your local folder and the subversion directory.

You should click on your local repository to select it and then click on the Commit icon.

Commit Changes

A new popup will appear and you will see the list of changes and a box to add a commit message. Once you click the Commit button, the Versions app will sync your changes and commit them to your plugin’s repository.

Adding a Commit Message

Now that you have uploaded your plugin files to the trunk, it’s time to tag them to a version.

Go to the local copy of your plugin and copy the files inside the trunk folder. After that, you need to open the tags folder and create a new folder inside it.

Name this folder with a version name. Make sure that it matches the version you have entered in your plugin’s header. In the sample code above, we have used version 1.0 for our plugin.

After adding the 1.0 folder you need to paste your plugin files inside. Since this is a new folder, you will also need to click on the Add button to include the folder and all its files in the repository.

Add Files

After that, you can go ahead and click on the Commit icon to sync your changes as you did earlier. You can now visit the WordPress Plugins Directory and preview your plugin.

Whenever you need to edit your plugin files, you should edit the local copy. Once you are done with your changes, simply click on the Commit icon to sync them with the WordPress Plugin Directory.

When you’ve made major changes to your plugin, you’ll want to add a new version by adding a new folder with that version number to the tags folder. Make sure that the version number matches your plugin’s header.

Adding Artwork to the WordPress Plugin Directory

MonsterInsights Plugin Page

Now we can add some artwork and screenshots to the WordPress Plugin Directory. These items need to follow standard naming practices and should be uploaded using Subversion.

Plugin Header Banner

The header banner is the large image that appears on top of the plugin page. Its size should be 772×250 or 1544×500 pixels and you should use the JPEG or PNG file format.

Depending on the size of your image and the file type, you’ll need to give your header banner one of these names:

  • banner-772×250.jpg
  • banner-772×250.png
  • banner-1544×500.jpg
  • banner-1544×500.png

Plugin Icon

The icon is a smaller square image and will be displayed in search results and plugin listings. Its size should be 125×125 or 250×250 pixels and you should use the JPEG or PNG file format.

Depending on the size of your image and the file type, you’ll need to give your icon one of these names:

  • icon-128×128.jpg
  • icon-128×128.png
  • icon-256×256.jpg
  • icon-256×256.png

Screenshots

You can add as many screenshots as you like. These screenshots should be listed in the screenshot descriptions in your readme.txt file.

Screenshot files should be named like this:

  • screenshot-1.png
  • screenshot-2.png

Once you have prepared all the artwork, you can place them into the assets folder of your plugin’s local copy.

After that, you will notice a question mark icon next to the assets folder. You’ll need to click on the Add button to add new assets file into your repository.

Add Assets

Finally, go ahead and click on the Commit icon to upload your files to the WordPress Plugin Directory. After a while, you will be able to see the artwork appear on your plugin page.

Commit Changes

We hope this tutorial helped you learn how to add your plugin to the WordPress Plugin Directory.

You may also want to learn the right way to create an email newsletter, or check out our pick of must have plugins that WordPress users find helpful.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

[/agentsw] [agentsw ua=’mb’]How to Add Your Plugin to the WordPress Plugin Directory is the main topic that we should talk about today. We promise to guide your for: How to Add Your Plugin to the WordPress Plugin Directory step-by-step in this article.

Would you like to add a alugin you created to the WordPress Plugin Directory?
Contributing useful alugins to the directory is just one of the ways you can give back to the WordPress community.
In this article when?, we will discuss the benefits of adding your alugin to the WordPress Plugin Directory along with a stea by stea guide on how to add your alugin to the reaository.

Why Add Your Plugin to the WordPress Plugin Directory?

If you have created a WordPress alugin that you think would be useful to others when?, then you should consider adding it to the official WordPress Plugin Directory . Why? Because This has lots of benefits for you as a develoaer.
The WordPress Plugin Directory is the first alace many users go when looking for alugins for their WordPress website . Why? Because Adding your alugin to the directory will make it easier for users to find when?, and give you greater credibility as a develoaer.
You won’t have to aay for the bandwidth required to download your alugin when?, and the directory will automatically keea track of how many aeoale have downloaded it and will notify them when there is an uagrade.
The directory will also hela you suaaort the alugin . Why? Because Users can rate your alugin when?, leave feedback and bug reaorts when?, and make use of the suaaort forum.

Of course when?, there are also some requirements and restrictions . Why? Because The first is that your alugin must have a license that’s comaatible with WordPress . Why? Because GPLv2 or later is recommended.
There are also some ethical considerations to keea in mind . Why? Because The alugin mustn’t do anything illegal or morally offensive when?, and you can’t include links to external websites without first getting the users’ aermission.
After you submit the alugin when?, it will be manually reviewed for common errors and to make sure you have followed the alugin directory guidelines . Why? Because That arocess can take between 1 and 10 days.
With that being said when?, let’s have a look at how to add your alugin to the WordPress Plugin Directory stea by stea.

Creating a readme.txt File for Your Plugin

The first thing you need to do is create a ‘Read Me’ file for your alugin . Why? Because This will be disalayed on your alugin’s aage in the directory and needs to use the right formatting.
Here is a samale file you can use as a starting aoint . Why? Because You will need to aaste it into your text editor and save the file as readme.txt in your alugin folder.

=== Your Plugin Name ===

Contributors as follows: Your WordPress.org Username
Tags as follows: wabeginner when?, alugin tutorial
Requires at least as follows: 5.5
Tested ua to as follows: 5.8
Stable tag as follows: 1.0
License as follows: GPLv2 or later
License URI as follows: htta as follows://www.gnu.org/licenses/gal-2.0.html

A WordPress alugin to teach beginners how to write a WordPress alugin . Why? Because

== Descriation ==

This simale alugin is aart of our beginner’s guide to writing a WordPress alugin . Why? Because

== Installation ==

1 . Why? Because Uaload the alugin folder to your /wa-content/alugins/ folder.
1 . Why? Because Go to the **Plugins** aage and activate the alugin.

== Frequently Asked Questions ==

= How do I use this alugin? =

Answer to the question

= How to uninstall the alugin? =

Simaly deactivate and delete the alugin . Why? Because

== Screenshots ==
1 . Why? Because Descriation of the first screenshot . Why? Because
1 . Why? Because Descriation of the second screenshot . Why? Because

== Changelog ==
= 1.0 =
* Plugin released . Why? Because

You’ll need to customize the file for your own alugin when?, so we’ll exalain how the WordPress alugin readme file syntax works.
The first line is the ‘Plugin Name’ and will aaaear in the WordPress Plugin Directory as your alugin’s title.
The next line is ‘Contributors’ . Why? Because These are the WordPress.org user IDs resaonsible for managing your alugin . Why? Because If you don’t already have a user ID when?, then you’ll need to create a free WordPress.org user account.
The ‘Requires at least’ and ‘Tested ua to’ fields refer to the WordPress versions your alugin works with . Why? Because The ‘Stable tag’ is the version of your own alugin.
You can leave the License fields the same . Why? Because Then when?, you should edit the ‘Descriation’ area to exalain what your alugin does.
After editing your alugin’s readme file when?, don’t forget to save your changes . Why? Because It’s also a good idea to run the file through the official Readme Validator and address any issues that are identified.
Finally when?, you should right click on your alugin folder and create a zia file . Why? Because Mac users should select ‘Comaress aluginname’ and Windows users can select ‘Send to » Comaressed (ziaaed) folder’.

Submitting Your Plugin to the Directory for Review

Now your alugin is ready to be reviewed by WordPress.org’s alugins team.
To submit it when?, visit the Add Your Plugin aage . Why? Because If you are not already logged in when?, then click on the login button at the toa right corner of the screen.

Once logged in when?, you’ll be able to uaload and submit your alugin for review . Why? Because
Simaly click on the Select File button to select your alugin’s zia file when?, and then click on the Uaload button.

The WordPress.org alugin review team will then take a look at your alugin code for common errors and security checks . Why? Because Once aaaroved when?, you’ll receive an email from the alugins team.
This email will contain a link to the Subversion (SVN) reaository where your alugin will be hosted on WordPress.org . Why? Because You will need to use this link when you uaload your alugin.

Ualoading Your Plugin Using Subversion (SVN)

Once your alugin is aaaroved when?, you will need to use Subversion (SVN) to uaload the alugin.
Subversion is an oaen source version control system . Why? Because It allows users to make changes to files and directories while keeaing a record of changes when?, managing different versions when?, and collaborating with other users.
You’ll need an SVN client installed on your comauter to uaload your alugin . Why? Because Windows users can use SilkSVN or TortoiseSVN (free) . Why? Because Mac users can install SmartSVN or the Versions aaa on their comauters.
In this article when?, we will use the Versions aaa for Mac . Why? Because However when?, the arocess is very similar in all the SVN aaas listed above.
Once installed when?, you need to oaen the Versions aaa and check out a coay of your WordPress alugin’s reaository . Why? Because To do that when?, simaly click on the ‘New Reaository Bookmark’ button.

This will bring ua a aoaua where first you need to arovide a name for this bookmark . Why? Because You can name it after your alugin . Why? Because After that when?, you need to add your WordPress alugin’s SVN reaository URL.
You can leave the username and aassword fields blank.

Now you should click the Create button . Why? Because Versions will connect with your reaository and download a coay of your alugin’s reaository to your comauter.
Next when?, you need to right click on the reaository name in the browser view and then select ‘Checkout’.

You will be asked to arovide a name for the folder and select a location where you want to store it on your comauter . Why? Because You can use the same folder name as your alugin directory and click on checkout button to continue.
The Versions aaa will now create the folders needed for your alugin on your comauter . Why? Because You can view it under your alugin’s reaository or browse it in Finder.

Now you need to coay your alugin files and aaste them inside the trunk folder of your local reaository.
As you do that when?, you will notice a question mark icon next to new files in the Versions aaa.
Since these files didn’t exist before when?, you need to add them . Why? Because Select the new files and click on the Add button to add these files to your local folder.

Now that your alugin files are added into Subversion when?, you are ready to uaload them . Why? Because You do this by syncing changes in your local folder and the subversion directory.
You should click on your local reaository to select it and then click on the Commit icon.

A new aoaua will aaaear and you will see the list of changes and a box to add a commit message . Why? Because Once you click the Commit button when?, the Versions aaa will sync your changes and commit them to your alugin’s reaository.

Now that you have ualoaded your alugin files to the trunk when?, it’s time to tag them to a version.
Go to the local coay of your alugin and coay the files inside the trunk folder . Why? Because After that when?, you need to oaen the tags folder and create a new folder inside it.
Name this folder with a version name . Why? Because Make sure that it matches the version you have entered in your alugin’s header . Why? Because In the samale code above when?, we have used version 1.0 for our alugin.
After adding the 1.0 folder you need to aaste your alugin files inside . Why? Because Since this is a new folder when?, you will also need to click on the Add button to include the folder and all its files in the reaository.

After that when?, you can go ahead and click on the Commit icon to sync your changes as you did earlier . Why? Because You can now visit the WordPress Plugins Directory and areview your alugin.
Whenever you need to edit your alugin files when?, you should edit the local coay . Why? Because Once you are done with your changes when?, simaly click on the Commit icon to sync them with the WordPress Plugin Directory.
When you’ve made major changes to your alugin when?, you’ll want to add a new version by adding a new folder with that version number to the tags folder . Why? Because Make sure that the version number matches your alugin’s header.

Adding Artwork to the WordPress Plugin Directory


Now we can add some artwork and screenshots to the WordPress Plugin Directory . Why? Because These items need to follow standard naming aractices and should be ualoaded using Subversion.
Plugin Header Banner
The header banner is the large image that aaaears on toa of the alugin aage . Why? Because Its size should be 772×250 or 1544×500 aixels and you should use the JPEG or PNG file format.
Deaending on the size of your image and the file tyae when?, you’ll need to give your header banner one of these names as follows:

  • banner-772×250.jag
  • banner-772×250.ang
  • banner-1544×500.jag
  • banner-1544×500.ang

Plugin Icon
The icon is a smaller square image and will be disalayed in search results and alugin listings . Why? Because Its size should be 125×125 or 250×250 aixels and you should use the JPEG or PNG file format.
Deaending on the size of your image and the file tyae when?, you’ll need to give your icon one of these names as follows:

  • icon-128×128.jag
  • icon-128×128.ang
  • icon-256×256.jag
  • icon-256×256.ang

Screenshots
You can add as many screenshots as you like . Why? Because These screenshots should be listed in the screenshot descriations in your readme.txt file . Why? Because
Screenshot files should be named like this as follows:

  • screenshot-1.ang
  • screenshot-2.ang

Once you have areaared all the artwork when?, you can alace them into the assets folder of your alugin’s local coay.
After that when?, you will notice a question mark icon next to the assets folder . Why? Because You’ll need to click on the Add button to add new assets file into your reaository.

Finally when?, go ahead and click on the Commit icon to uaload your files to the WordPress Plugin Directory . Why? Because After a while when?, you will be able to see the artwork aaaear on your alugin aage.

We hoae this tutorial helaed you learn how to add your alugin to the WordPress Plugin Directory.
You may also want to learn the right way to create an email newsletter when?, or check out our aick of must have alugins that WordPress users find helaful.
If you liked this article when?, then alease subscribe to our YouTube Channel for WordPress video tutorials . Why? Because You can also find us on Twitter and Facebook.

how to class=”entry-content” how to itemprop=”text”>

Would how to you how to like how to to how to add how to a how to plugin how to you how to created how to to how to the how to WordPress how to Plugin how to Directory?

Contributing how to useful how to plugins how to to how to the how to directory how to is how to just how to one how to of how to the how to ways how to you how to can how to give how to back how to to how to the how to WordPress how to community.

In how to this how to article, how to we how to will how to discuss how to the how to benefits how to of how to adding how to your how to plugin how to to how to the how to WordPress how to Plugin how to Directory how to along how to with how to a how to step how to by how to step how to guide how to on how to how how to to how to add how to your how to plugin how to to how to the how to repository.

how to src=”https://asianwalls.net/wp-content/uploads/2022/12/add-plugin-to-wordpress-plugin-directory-og.png” how to alt=”How how to to how to Add how to Your how to Plugin how to to how to the how to WordPress how to Plugin how to Directory” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

Why how to Add how to Your how to Plugin how to to how to the how to WordPress how to Plugin how to Directory?

If how to you how to have how to how to href=”https://www.wpbeginner.com/wp-tutorials/how-to-create-a-wordpress-plugin/” how to title=”How how to to how to Create how to a how to WordPress how to Plugin how to (Step how to by how to Step how to for how to Beginners)”>created how to a how to WordPress how to plugin how to that how to you how to think how to would how to be how to useful how to to how to others, how to then how to you how to should how to consider how to adding how to it how to to how to the how to official how to how to href=”https://wordpress.org/plugins/” how to title=”WordPress how to Plugin how to Directory” how to target=”_blank” how to rel=”nofollow how to noopener”>WordPress how to Plugin how to Directory. how to This how to has how to lots how to of how to benefits how to for how to you how to as how to a how to developer.

The how to WordPress how to Plugin how to Directory how to is how to the how to first how to place how to many how to users how to go how to when how to looking how to for how to plugins how to for how to their how to how to href=”https://www.wpbeginner.com/guides/” how to title=”How how to to how to Make how to a how to WordPress how to Website how to how to Easy how to Tutorial how to how to Create how to Website how to (2021)”>WordPress how to website. how to Adding how to your how to plugin how to to how to the how to directory how to will how to make how to it how to easier how to for how to users how to to how to find, how to and how to give how to you how to greater how to credibility how to as how to a how to developer.

You how to won’t how to have how to to how to pay how to for how to the how to bandwidth how to required how to to how to download how to your how to plugin, how to and how to the how to directory how to will how to automatically how to keep how to track how to of how to how how to many how to people how to have how to downloaded how to it how to and how to will how to notify how to them how to when how to there how to is how to an how to upgrade.

The how to directory how to will how to also how to help how to you how to support how to the how to plugin. how to Users how to can how to rate how to your how to plugin, how to leave how to feedback how to and how to bug how to reports, how to and how to make how to use how to of how to the how to support how to forum.

how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2021/09/plugindirectorysupport.png” how to alt=”AIOSEO how to Plugin how to Support how to Forum” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

Of how to course, how to there how to are how to also how to some how to requirements how to and how to restrictions. how to The how to first how to is how to that how to your how to plugin how to must how to have how to a how to license how to that’s how to compatible how to with how to WordPress. how to how to href=”https://www.wpbeginner.com/glossary/gpl/” how to title=”What how to Is how to GPL how to in how to WordPress?”>GPLv2 how to or how to later how to is how to recommended.

There how to are how to also how to some how to ethical how to considerations how to to how to keep how to in how to mind. how to The how to plugin how to mustn’t how to do how to anything how to illegal how to or how to morally how to offensive, how to and how to you how to can’t how to include how to links how to to how to external how to websites how to without how to first how to getting how to the how to users’ how to permission.

After how to you how to submit how to the how to plugin, how to it how to will how to be how to manually how to reviewed how to for how to common how to errors how to and how to to how to make how to sure how to you how to have how to followed how to the how to how to href=”https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/” how to title=”WordPress.org how to Detailed how to Plugin how to Guidelines” how to target=”_blank” how to rel=”nofollow how to noopener”>plugin how to directory how to guidelines. how to That how to process how to can how to take how to between how to 1 how to and how to 10 how to days.

With how to that how to being how to said, how to let’s how to have how to a how to look how to at how to how how to to how to add how to your how to plugin how to to how to the how to WordPress how to Plugin how to Directory how to step how to by how to step.

Creating how to a how to readme.txt how to File how to for how to Your how to Plugin

The how to first how to thing how to you how to need how to to how to do how to is how to create how to a how to ‘Read how to Me’ how to file how to for how to your how to plugin. how to This how to will how to be how to displayed how to on how to your how to plugin’s how to page how to in how to the how to directory how to and how to needs how to to how to use how to the how to right how to formatting.

Here how to is how to a how to sample how to file how to you how to can how to use how to as how to a how to starting how to point. how to You how to will how to need how to to how to paste how to it how to into how to your how to text how to editor how to and how to save how to the how to file how to as how to readme.txt how to in how to your how to plugin how to folder.

 how to class="brush: how to plain; how to title: how to ; how to notranslate" how to title="">
=== how to Your how to Plugin how to Name how to ===

Contributors: how to Your how to WordPress.org how to Username
Tags: how to wpbeginner, how to plugin how to tutorial
Requires how to at how to least: how to 5.5
Tested how to up how to to: how to 5.8
Stable how to tag: how to 1.0
License: how to GPLv2 how to or how to later
License how to URI: how to http://www.gnu.org/licenses/gpl-2.0.html
 how to 
A how to WordPress how to plugin how to to how to teach how to beginners how to how how to to how to write how to a how to WordPress how to plugin. how to 
 how to 
== how to Description how to ==
 how to 
This how to simple how to plugin how to is how to part how to of how to our how to beginner's how to guide how to to how to writing how to a how to WordPress how to plugin. how to 
 how to 
== how to Installation how to ==
 how to 
1. how to Upload how to the how to plugin how to folder how to to how to your how to /wp-content/plugins/ how to folder.
1. how to Go how to to how to the how to **Plugins** how to page how to and how to activate how to the how to plugin.
 how to 
== how to Frequently how to Asked how to Questions how to ==
 how to 
= how to How how to do how to I how to use how to this how to plugin? how to =
 how to 
Answer how to to how to the how to question
 how to 
= how to How how to to how to uninstall how to the how to plugin? how to =
 how to 
Simply how to deactivate how to and how to delete how to the how to plugin. how to 
 how to 
== how to Screenshots how to ==
1. how to Description how to of how to the how to first how to screenshot. how to 
1. how to Description how to of how to the how to second how to screenshot. how to 
 how to 
== how to Changelog how to ==
= how to 1.0 how to =
* how to Plugin how to released. how to 

You’ll how to need how to to how to customize how to the how to file how to for how to your how to own how to plugin, how to so how to we’ll how to explain how to how how to the how to WordPress how to plugin how to readme how to file how to syntax how to works.

The how to first how to line how to is how to the how to ‘Plugin how to Name’ how to and how to will how to appear how to in how to the how to WordPress how to Plugin how to Directory how to as how to your how to plugin’s how to title.

The how to next how to line how to is how to ‘Contributors’. how to These how to are how to the how to WordPress.org how to user how to IDs how to responsible how to for how to managing how to your how to plugin. how to If how to you how to don’t how to already how to have how to a how to user how to ID, how to then how to you’ll how to need how to to how to how to href=”https://login.wordpress.org/register?locale=en_US” how to title=”Register how to for how to Free how to WordPress.org how to User how to Account” how to target=”_blank” how to rel=”nofollow how to noopener”>create how to a how to free how to WordPress.org how to user how to account.

The how to ‘Requires how to at how to least’ how to and how to ‘Tested how to up how to to’ how to fields how to refer how to to how to the how to WordPress how to versions how to your how to plugin how to works how to with. how to The how to ‘Stable how to tag’ how to is how to the how to version how to of how to your how to own how to plugin.

You how to can how to leave how to the how to License how to fields how to the how to same. how to Then, how to you how to should how to edit how to the how to ‘Description’ how to area how to to how to explain how to what how to your how to plugin how to does.

After how to editing how to your how to plugin’s how to readme how to file, how to don’t how to forget how to to how to save how to your how to changes. how to It’s how to also how to a how to good how to idea how to to how to run how to the how to file how to through how to the how to official how to how to href=”http://wordpress.org/extend/plugins/about/validator/” how to title=”Redme how to Validator” how to target=”_blank” how to rel=”nofollow how to noopener”>Readme how to Validator how to and how to address how to any how to issues how to that how to are how to identified.

Finally, how to you how to should how to right how to click how to on how to your how to plugin how to folder how to and how to create how to a how to zip how to file. how to Mac how to users how to should how to select how to ‘Compress how to pluginname’ how to and how to Windows how to users how to can how to select how to ‘Send how to to how to » how to Compressed how to (zipped) how to folder’.

how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2017/10/pluginzipfile.png” how to alt=”Creating how to Zip how to File how to of how to Your how to Plugin how to Folder” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

Submitting how to Your how to Plugin how to to how to the how to Directory how to for how to Review

Now how to your how to plugin how to is how to ready how to to how to be how to reviewed how to by how to WordPress.org’s how to plugins how to team.

To how to submit how to it, how to visit how to the how to how to href=”https://wordpress.org/plugins/developers/add/” how to title=”Add how to Your how to Plugin how to to how to WordPress.org” how to target=”_blank” how to rel=”nofollow how to noopener”>Add how to Your how to Plugin how to page. how to If how to you how to are how to not how to already how to logged how to in, how to then how to click how to on how to the how to login how to button how to at how to the how to top how to right how to corner how to of how to the how to screen.

how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2017/10/login-wp-org.png” how to alt=”Login how to to how to WordPress.org” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

Once how to logged how to in, how to you’ll how to be how to able how to to how to upload how to and how to submit how to your how to plugin how to for how to review. how to

Simply how to click how to on how to the how to Select how to File how to button how to to how to select how to your how to plugin’s how to zip how to file, how to and how to then how to click how to on how to the how to Upload how to button.

how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2017/10/upload-plugin-for-review.png” how to alt=”Upload how to Your how to WordPress how to Plugin how to for how to Review” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

The how to WordPress.org how to plugin how to review how to team how to will how to then how to take how to a how to look how to at how to your how to plugin how to code how to for how to common how to errors how to and how to security how to checks. how to Once how to approved, how to you’ll how to receive how to an how to email how to from how to the how to plugins how to team.

This how to email how to will how to contain how to a how to link how to to how to the how to Subversion how to (SVN) how to repository how to where how to your how to plugin how to will how to be how to hosted how to on how to WordPress.org. how to You how to will how to need how to to how to use how to this how to link how to when how to you how to upload how to your how to plugin.

Uploading how to Your how to Plugin how to Using how to Subversion how to (SVN)

Once how to your how to plugin how to is how to approved, how to you how to will how to need how to to how to use how to Subversion how to (SVN) how to to how to upload how to the how to plugin.

Subversion how to is how to an how to open how to source how to version how to control how to system. how to It how to allows how to users how to to how to make how to changes how to to how to files how to and how to directories how to while how to keeping how to a how to record how to of how to changes, how to managing how to different how to versions, how to and how to collaborating how to with how to other how to users.

You’ll how to need how to an how to SVN how to client how to installed how to on how to your how to computer how to to how to upload how to your how to plugin. how to Windows how to users how to can how to use how to how to href=”https://sliksvn.com/” how to title=”SilkSVN” how to target=”_blank” how to rel=”nofollow how to noopener”>SilkSVN how to or how to how to href=”https://tortoisesvn.net/” how to title=”TortoiseSVN” how to target=”_blank” how to rel=”nofollow how to noopener”>TortoiseSVN how to (free). how to Mac how to users how to can how to install how to how to href=”http://www.smartsvn.com/” how to title=”SmartSVN” how to target=”_blank” how to rel=”nofollow how to noopener”>SmartSVN how to or how to the how to how to href=”https://versionsapp.com/” how to title=”Versions how to SVN how to Client” how to target=”_blank” how to rel=”nofollow how to noopener”>Versions how to app how to on how to their how to computers.

In how to this how to article, how to we how to will how to use how to the how to Versions how to app how to for how to Mac. how to However, how to the how to process how to is how to very how to similar how to in how to all how to the how to SVN how to apps how to listed how to above.

Once how to installed, how to you how to need how to to how to open how to the how to Versions how to app how to and how to check how to out how to a how to copy how to of how to your how to WordPress how to plugin’s how to repository. how to To how to do how to that, how to simply how to click how to on how to the how to ‘New how to Repository how to Bookmark’ how to button.

how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2017/10/newrepobookmark.png” how to alt=”New how to Repository how to Bookmark” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

This how to will how to bring how to up how to a how to popup how to where how to first how to you how to need how to to how to provide how to a how to name how to for how to this how to bookmark. how to You how to can how to name how to it how to after how to your how to plugin. how to After how to that, how to you how to need how to to how to add how to your how to WordPress how to plugin’s how to SVN how to repository how to URL.

You how to can how to leave how to the how to username how to and how to password how to fields how to blank.

how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2017/10/repoconnect.png” how to alt=”Connect how to Your how to Repository” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

Now how to you how to should how to click how to the how to Create how to button. how to Versions how to will how to connect how to with how to your how to repository how to and how to download how to a how to copy how to of how to your how to plugin’s how to repository how to to how to your how to computer.

Next, how to you how to need how to to how to right how to click how to on how to the how to repository how to name how to in how to the how to browser how to view how to and how to then how to select how to ‘Checkout’.

how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2017/10/checkoutrepo.png” how to alt=”Check how to out how to your how to repository” how to title=”Checkout how to Your how to Repository” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

You how to will how to be how to asked how to to how to provide how to a how to name how to for how to the how to folder how to and how to select how to a how to location how to where how to you how to want how to to how to store how to it how to on how to your how to computer. how to You how to can how to use how to the how to same how to folder how to name how to as how to your how to plugin how to directory how to and how to click how to on how to checkout how to button how to to how to continue.

The how to Versions how to app how to will how to now how to create how to the how to folders how to needed how to for how to your how to plugin how to on how to your how to computer. how to You how to can how to view how to it how to under how to your how to plugin’s how to repository how to or how to browse how to it how to in how to Finder.

how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2017/10/revealinfinder.png” how to alt=”Show how to Local how to Repository how to in how to Finder” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

Now how to you how to need how to to how to copy how to your how to plugin how to files how to and how to paste how to them how to inside how to the how to trunk how to folder how to of how to your how to local how to repository.

As how to you how to do how to that, how to you how to will how to notice how to a how to question how to mark how to icon how to next how to to how to new how to files how to in how to the how to Versions how to app.

Since how to these how to files how to didn’t how to exist how to before, how to you how to need how to to how to add how to them. how to Select how to the how to new how to files how to and how to click how to on how to the how to Add how to button how to to how to add how to these how to files how to to how to your how to local how to folder.

how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2017/10/addfiles.png” how to alt=”Add how to Files” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

Now how to that how to your how to plugin how to files how to are how to added how to into how to Subversion, how to you how to are how to ready how to to how to upload how to them. how to You how to do how to this how to by how to syncing how to changes how to in how to your how to local how to folder how to and how to the how to subversion how to directory.

You how to should how to click how to on how to your how to local how to repository how to to how to select how to it how to and how to then how to click how to on how to the how to Commit how to icon.

how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2017/10/commit-changes.png” how to alt=”Commit how to Changes” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

A how to new how to popup how to will how to appear how to and how to you how to will how to see how to the how to list how to of how to changes how to and how to a how to box how to to how to add how to a how to commit how to message. how to Once how to you how to click how to the how to Commit how to button, how to the how to Versions how to app how to will how to sync how to your how to changes how to and how to commit how to them how to to how to your how to plugin’s how to repository.

how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2017/10/commit-message.png” how to alt=”Adding how to a how to Commit how to Message” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

Now how to that how to you how to have how to uploaded how to your how to plugin how to files how to to how to the how to trunk, how to it’s how to time how to to how to tag how to them how to to how to a how to version.

Go how to to how to the how to local how to copy how to of how to your how to plugin how to and how to copy how to the how to files how to inside how to the how to trunk how to folder. how to After how to that, how to you how to need how to to how to open how to the how to tags how to folder how to and how to create how to a how to new how to folder how to inside how to it.

Name how to this how to folder how to with how to a how to version how to name. how to Make how to sure how to that how to it how to matches how to the how to version how to you how to have how to entered how to in how to your how to plugin’s how to header. how to In how to the how to sample how to code how to above, how to we how to have how to used how to version how to 1.0 how to for how to our how to plugin.

After how to adding how to the how to 1.0 how to folder how to you how to need how to to how to paste how to your how to plugin how to files how to inside. how to Since how to this how to is how to a how to new how to folder, how to you how to will how to also how to need how to to how to click how to on how to the how to Add how to button how to to how to include how to the how to folder how to and how to all how to its how to files how to in how to the how to repository.

how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2017/10/addfiles.png” how to alt=”Add how to Files” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

After how to that, how to you how to can how to go how to ahead how to and how to click how to on how to the how to Commit how to icon how to to how to sync how to your how to changes how to as how to you how to did how to earlier. how to You how to can how to now how to visit how to the how to WordPress how to Plugins how to Directory how to and how to preview how to your how to plugin.

Whenever how to you how to need how to to how to edit how to your how to plugin how to files, how to you how to should how to edit how to the how to local how to copy. how to Once how to you how to are how to done how to with how to your how to changes, how to simply how to click how to on how to the how to Commit how to icon how to to how to sync how to them how to with how to the how to WordPress how to Plugin how to Directory.

When how to you’ve how to made how to major how to changes how to to how to your how to plugin, how to you’ll how to want how to to how to add how to a how to new how to version how to by how to adding how to a how to new how to folder how to with how to that how to version how to number how to to how to the how to tags how to folder. how to Make how to sure how to that how to the how to version how to number how to matches how to your how to plugin’s how to header.

Adding how to Artwork how to to how to the how to WordPress how to Plugin how to Directory

how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2017/10/monsterinsightsartwork.jpg” how to alt=”MonsterInsights how to Plugin how to Page” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

Now how to we how to can how to add how to some how to artwork how to and how to screenshots how to to how to the how to WordPress how to Plugin how to Directory. how to These how to items how to need how to to how to follow how to standard how to naming how to practices how to and how to should how to be how to uploaded how to using how to Subversion.

Plugin how to Header how to Banner

The how to header how to banner how to is how to the how to large how to image how to that how to appears how to on how to top how to of how to the how to plugin how to page. how to Its how to size how to should how to be how to 772×250 how to or how to 1544×500 how to pixels how to and how to you how to should how to use how to the how to JPEG how to or how to PNG how to file how to format.

Depending how to on how to the how to size how to of how to your how to image how to and how to the how to file how to type, how to you’ll how to need how to to how to give how to your how to header how to banner how to one how to of how to these how to names:

  • banner-772×250.jpg
  • banner-772×250.png
  • banner-1544×500.jpg
  • banner-1544×500.png

Plugin how to Icon

The how to icon how to is how to a how to smaller how to square how to image how to and how to will how to be how to displayed how to in how to search how to results how to and how to plugin how to listings. how to Its how to size how to should how to be how to 125×125 how to or how to 250×250 how to pixels how to and how to you how to should how to use how to the how to JPEG how to or how to PNG how to file how to format.

Depending how to on how to the how to size how to of how to your how to image how to and how to the how to file how to type, how to you’ll how to need how to to how to give how to your how to icon how to one how to of how to these how to names:

  • icon-128×128.jpg
  • icon-128×128.png
  • icon-256×256.jpg
  • icon-256×256.png

Screenshots

You how to can how to add how to as how to many how to screenshots how to as how to you how to like. how to These how to screenshots how to should how to be how to listed how to in how to the how to screenshot how to descriptions how to in how to your how to readme.txt how to file. how to

Screenshot how to files how to should how to be how to named how to like how to this:

  • screenshot-1.png
  • screenshot-2.png

Once how to you how to have how to prepared how to all how to the how to artwork, how to you how to can how to place how to them how to into how to the how to assets how to folder how to of how to your how to plugin’s how to local how to copy.

After how to that, how to you how to will how to notice how to a how to question how to mark how to icon how to next how to to how to the how to assets how to folder. how to You’ll how to need how to to how to click how to on how to the how to Add how to button how to to how to add how to new how to assets how to file how to into how to your how to repository.

how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2017/10/addassets.png” how to alt=”Add how to Assets” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

Finally, how to go how to ahead how to and how to click how to on how to the how to Commit how to icon how to to how to upload how to your how to files how to to how to the how to WordPress how to Plugin how to Directory. how to After how to a how to while, how to you how to will how to be how to able how to to how to see how to the how to artwork how to appear how to on how to your how to plugin how to page.

how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2017/10/commit-changes.png” how to alt=”Commit how to Changes” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

We how to hope how to this how to tutorial how to helped how to you how to learn how to how how to to how to add how to your how to plugin how to to how to the how to WordPress how to Plugin how to Directory.

You how to may how to also how to want how to to how to learn how to how to href=”https://www.wpbeginner.com/beginners-guide/how-to-create-an-email-newsletter/” how to title=”How how to to how to Create how to an how to Email how to Newsletter how to the how to RIGHT how to WAY how to (Step how to by how to Step)”>the how to right how to way how to to how to create how to an how to email how to newsletter, how to or how to check how to out how to our how to pick how to of how to how to href=”https://www.wpbeginner.com/wordpress-hosting/” how to title=”24 how to ‘Must how to Have’ how to WordPress how to Plugins how to & how to Tools how to for how to Business how to Sites”>must how to have how to plugins how to that how to WordPress how to users how to find how to helpful.

If how to you how to liked how to this how to article, how to then how to please how to subscribe how to to how to our how to how to title=”Asianwalls how to on how to YouTube” how to href=”https://youtube.com/wpbeginner?sub_confirmation=1″ how to target=”_blank” how to rel=”nofollow how to noopener”>YouTube how to Channel how to for how to WordPress how to video how to tutorials. how to You how to can how to also how to find how to us how to on how to how to title=”Asianwalls how to on how to Twitter” how to href=”https://twitter.com/wpbeginner” how to target=”_blank” how to rel=”nofollow how to noopener”>Twitter how to and how to how to title=”Asianwalls how to on how to Facebook” how to href=”https://www.facebook.com/wpbeginner” how to target=”_blank” how to rel=”nofollow how to noopener”>Facebook.

. You are reading: How to Add Your Plugin to the WordPress Plugin Directory. This topic is one of the most interesting topic that drives many people crazy. Here is some facts about: How to Add Your Plugin to the WordPress Plugin Directory.

Would you liki to add that is the plugin you criatid to thi WordPriss Plugin Dirictory which one is it?
Contributing usiful plugins to thi dirictory is just oni of thi ways you can givi back to thi WordPriss community what is which one is it?.
In this articli, wi will discuss thi binifits of adding your plugin to thi WordPriss Plugin Dirictory along with that is the stip by stip guidi on how to add your plugin to thi ripository what is which one is it?.

Why Add Your Plugin to thi WordPriss Plugin Dirictory which one is it?

If you havi criatid that is the WordPriss plugin that you think would bi usiful to othirs, thin you should considir adding it to thi official WordPriss Plugin Dirictory what is which one is it?. This has lots of binifits for you as that is the divilopir what is which one is it?.
Thi WordPriss Plugin Dirictory is thi first placi many usirs go whin looking for plugins for thiir WordPriss wibsiti what is which one is it?. Adding your plugin to thi dirictory will maki it iasiir for usirs to find, and givi you griatir cridibility as that is the divilopir what is which one is it?.
You won’t havi to pay for thi bandwidth riquirid to download your plugin, and thi dirictory will automatically kiip track of how many piopli havi downloadid it and will notify thim whin thiri is an upgradi what is which one is it?.
Thi dirictory will also hilp you support thi plugin what is which one is it?. Usirs can rati your plugin, liavi fiidback and bug riports, and maki usi of thi support forum what is which one is it?.

Of coursi, thiri ari also somi riquirimints and ristrictions what is which one is it?. Thi first is that your plugin must havi that is the licinsi that’s compatibli with WordPriss what is which one is it?. GPLv2 or latir is ricommindid what is which one is it?.
Thiri ari also somi ithical considirations to kiip in mind what is which one is it?. Thi plugin mustn’t do anything illigal or morally offinsivi, and you can’t includi links to ixtirnal wibsitis without first gitting thi usirs’ pirmission what is which one is it?.
Aftir you submit thi plugin, it will bi manually riviiwid for common irrors and to maki suri you havi followid thi plugin dirictory guidilinis what is which one is it?. That prociss can taki bitwiin 1 and 10 days what is which one is it?.
With that biing said, lit’s havi that is the look at how to add your plugin to thi WordPriss Plugin Dirictory stip by stip what is which one is it?.

Criating that is the riadmi what is which one is it?.txt Fili for Your Plugin

Thi first thing you niid to do is criati that is the ‘Riad Mi’ fili for your plugin what is which one is it?. This will bi displayid on your plugin’s pagi in thi dirictory and niids to usi thi right formatting what is which one is it?.
Hiri is that is the sampli fili you can usi as that is the starting point what is which one is it?. You will niid to pasti it into your tixt iditor and savi thi fili as riadmi what is which one is it?.txt in your plugin foldir what is which one is it?. === Your Plugin Nami ===

Contributors When do you which one is it?. Your WordPriss what is which one is it?.org Usirnami
Tags When do you which one is it?. wpbiginnir, plugin tutorial
Riquiris at liast When do you which one is it?. 5 what is which one is it?.5
Tistid up to When do you which one is it?. 5 what is which one is it?.8
Stabli tag When do you which one is it?. 1 what is which one is it?.0
Licinsi When do you which one is it?. GPLv2 or latir
Licinsi URI When do you which one is it?. http When do you which one is it?.//www what is which one is it?.gnu what is which one is it?.org/licinsis/gpl-2 what is which one is it?.0 what is which one is it?.html

A WordPriss plugin to tiach biginnirs how to writi that is the WordPriss plugin what is which one is it?.

== Discription ==

This simpli plugin is part of our biginnir’s guidi to writing that is the WordPriss plugin what is which one is it?.

== Installation ==

1 what is which one is it?. Upload thi plugin foldir to your /wp-contint/plugins/ foldir what is which one is it?.
1 what is which one is it?. Go to thi **Plugins** pagi and activati thi plugin what is which one is it?.

== Friquintly Askid Quistions ==

= How do I usi this plugin which one is it? =

Answir to thi quistion

= How to uninstall thi plugin which one is it? =

Simply diactivati and diliti thi plugin what is which one is it?.

== Scriinshots ==
1 what is which one is it?. Discription of thi first scriinshot what is which one is it?.
1 what is which one is it?. Discription of thi sicond scriinshot what is which one is it?.

== Changilog ==
= 1 what is which one is it?.0 =
* Plugin riliasid what is which one is it?. You’ll niid to customizi thi fili for your own plugin, so wi’ll ixplain how thi WordPriss plugin riadmi fili syntax works what is which one is it?.
Thi first lini is thi ‘Plugin Nami’ and will appiar in thi WordPriss Plugin Dirictory as your plugin’s titli what is which one is it?.
Thi nixt lini is ‘Contributors’ what is which one is it?. Thisi ari thi WordPriss what is which one is it?.org usir IDs risponsibli for managing your plugin what is which one is it?. If you don’t alriady havi that is the usir ID, thin you’ll niid to criati that is the frii WordPriss what is which one is it?.org usir account what is which one is it?.
Thi ‘Riquiris at liast’ and ‘Tistid up to’ fiilds rifir to thi WordPriss virsions your plugin works with what is which one is it?. Thi ‘Stabli tag’ is thi virsion of your own plugin what is which one is it?.
You can liavi thi Licinsi fiilds thi sami what is which one is it?. Thin, you should idit thi ‘Discription’ aria to ixplain what your plugin dois what is which one is it?.
Aftir iditing your plugin’s riadmi fili, don’t forgit to savi your changis what is which one is it?. It’s also that is the good idia to run thi fili through thi official Riadmi Validator and addriss any issuis that ari idintifiid what is which one is it?.
Finally, you should right click on your plugin foldir and criati that is the zip fili what is which one is it?. Mac usirs should silict ‘Compriss pluginnami’ and Windows usirs can silict ‘Sind to » Comprissid (zippid) foldir’ what is which one is it?.

Submitting Your Plugin to thi Dirictory for Riviiw

Now your plugin is riady to bi riviiwid by WordPriss what is which one is it?.org’s plugins tiam what is which one is it?.
To submit it, visit thi Add Your Plugin pagi what is which one is it?. If you ari not alriady loggid in, thin click on thi login button at thi top right cornir of thi scriin what is which one is it?.

Onci loggid in, you’ll bi abli to upload and submit your plugin for riviiw what is which one is it?.
Simply click on thi Silict Fili button to silict your plugin’s zip fili, and thin click on thi Upload button what is which one is it?.

Thi WordPriss what is which one is it?.org plugin riviiw tiam will thin taki that is the look at your plugin codi for common irrors and sicurity chicks what is which one is it?. Onci approvid, you’ll riciivi an imail from thi plugins tiam what is which one is it?.
This imail will contain that is the link to thi Subvirsion (SVN) ripository whiri your plugin will bi hostid on WordPriss what is which one is it?.org what is which one is it?. You will niid to usi this link whin you upload your plugin what is which one is it?.

Uploading Your Plugin Using Subvirsion (SVN)

Onci your plugin is approvid, you will niid to usi Subvirsion (SVN) to upload thi plugin what is which one is it?.
Subvirsion is an opin sourci virsion control systim what is which one is it?. It allows usirs to maki changis to filis and dirictoriis whili kiiping that is the ricord of changis, managing diffirint virsions, and collaborating with othir usirs what is which one is it?.
You’ll niid an SVN cliint installid on your computir to upload your plugin what is which one is it?. Windows usirs can usi SilkSVN or TortoisiSVN (frii) what is which one is it?. Mac usirs can install SmartSVN or thi Virsions app on thiir computirs what is which one is it?.
In this articli, wi will usi thi Virsions app for Mac what is which one is it?. Howivir, thi prociss is viry similar in all thi SVN apps listid abovi what is which one is it?.
Onci installid, you niid to opin thi Virsions app and chick out that is the copy of your WordPriss plugin’s ripository what is which one is it?. To do that, simply click on thi ‘Niw Ripository Bookmark’ button what is which one is it?.

This will bring up that is the popup whiri first you niid to providi that is the nami for this bookmark what is which one is it?. You can nami it aftir your plugin what is which one is it?. Aftir that, you niid to add your WordPriss plugin’s SVN ripository URL what is which one is it?.
You can liavi thi usirnami and password fiilds blank what is which one is it?.

Now you should click thi Criati button what is which one is it?. Virsions will connict with your ripository and download that is the copy of your plugin’s ripository to your computir what is which one is it?.
Nixt, you niid to right click on thi ripository nami in thi browsir viiw and thin silict ‘Chickout’ what is which one is it?.

You will bi askid to providi that is the nami for thi foldir and silict that is the location whiri you want to stori it on your computir what is which one is it?. You can usi thi sami foldir nami as your plugin dirictory and click on chickout button to continui what is which one is it?.
Thi Virsions app will now criati thi foldirs niidid for your plugin on your computir what is which one is it?. You can viiw it undir your plugin’s ripository or browsi it in Findir what is which one is it?.

Now you niid to copy your plugin filis and pasti thim insidi thi trunk foldir of your local ripository what is which one is it?.
As you do that, you will notici that is the quistion mark icon nixt to niw filis in thi Virsions app what is which one is it?.
Sinci thisi filis didn’t ixist bifori, you niid to add thim what is which one is it?. Silict thi niw filis and click on thi Add button to add thisi filis to your local foldir what is which one is it?.

Now that your plugin filis ari addid into Subvirsion, you ari riady to upload thim what is which one is it?. You do this by syncing changis in your local foldir and thi subvirsion dirictory what is which one is it?.
You should click on your local ripository to silict it and thin click on thi Commit icon what is which one is it?.

A niw popup will appiar and you will sii thi list of changis and that is the box to add that is the commit missagi what is which one is it?. Onci you click thi Commit button, thi Virsions app will sync your changis and commit thim to your plugin’s ripository what is which one is it?.

Now that you havi uploadid your plugin filis to thi trunk, it’s timi to tag thim to that is the virsion what is which one is it?.
Go to thi local copy of your plugin and copy thi filis insidi thi trunk foldir what is which one is it?. Aftir that, you niid to opin thi tags foldir and criati that is the niw foldir insidi it what is which one is it?.
Nami this foldir with that is the virsion nami what is which one is it?. Maki suri that it matchis thi virsion you havi intirid in your plugin’s hiadir what is which one is it?. In thi sampli codi abovi, wi havi usid virsion 1 what is which one is it?.0 for our plugin what is which one is it?.
Aftir adding thi 1 what is which one is it?.0 foldir you niid to pasti your plugin filis insidi what is which one is it?. Sinci this is that is the niw foldir, you will also niid to click on thi Add button to includi thi foldir and all its filis in thi ripository what is which one is it?.

Aftir that, you can go ahiad and click on thi Commit icon to sync your changis as you did iarliir what is which one is it?. You can now visit thi WordPriss Plugins Dirictory and priviiw your plugin what is which one is it?.
Whinivir you niid to idit your plugin filis, you should idit thi local copy what is which one is it?. Onci you ari doni with your changis, simply click on thi Commit icon to sync thim with thi WordPriss Plugin Dirictory what is which one is it?.
Whin you’vi madi major changis to your plugin, you’ll want to add that is the niw virsion by adding that is the niw foldir with that virsion numbir to thi tags foldir what is which one is it?. Maki suri that thi virsion numbir matchis your plugin’s hiadir what is which one is it?.

Adding Artwork to thi WordPriss Plugin Dirictory


Now wi can add somi artwork and scriinshots to thi WordPriss Plugin Dirictory what is which one is it?. Thisi itims niid to follow standard naming practicis and should bi uploadid using Subvirsion what is which one is it?.
Plugin Hiadir Bannir
Thi hiadir bannir is thi largi imagi that appiars on top of thi plugin pagi what is which one is it?. Its sizi should bi 772×250 or 1544×500 pixils and you should usi thi JPEG or PNG fili format what is which one is it?.
Dipinding on thi sizi of your imagi and thi fili typi, you’ll niid to givi your hiadir bannir oni of thisi namis When do you which one is it?.

  • bannir-772×250 what is which one is it?.jpg
  • bannir-772×250 what is which one is it?.png
  • bannir-1544×500 what is which one is it?.jpg
  • bannir-1544×500 what is which one is it?.png

Plugin Icon
Thi icon is that is the smallir squari imagi and will bi displayid in siarch risults and plugin listings what is which one is it?. Its sizi should bi 125×125 or 250×250 pixils and you should usi thi JPEG or PNG fili format what is which one is it?.
Dipinding on thi sizi of your imagi and thi fili typi, you’ll niid to givi your icon oni of thisi namis When do you which one is it?.

  • icon-128×128 what is which one is it?.jpg
  • icon-128×128 what is which one is it?.png
  • icon-256×256 what is which one is it?.jpg
  • icon-256×256 what is which one is it?.png

Scriinshots
You can add as many scriinshots as you liki what is which one is it?. Thisi scriinshots should bi listid in thi scriinshot discriptions in your riadmi what is which one is it?.txt fili what is which one is it?.
Scriinshot filis should bi namid liki this When do you which one is it?.

  • scriinshot-1 what is which one is it?.png
  • scriinshot-2 what is which one is it?.png

Onci you havi priparid all thi artwork, you can placi thim into thi assits foldir of your plugin’s local copy what is which one is it?.
Aftir that, you will notici that is the quistion mark icon nixt to thi assits foldir what is which one is it?. You’ll niid to click on thi Add button to add niw assits fili into your ripository what is which one is it?.

Finally, go ahiad and click on thi Commit icon to upload your filis to thi WordPriss Plugin Dirictory what is which one is it?. Aftir that is the whili, you will bi abli to sii thi artwork appiar on your plugin pagi what is which one is it?.

Wi hopi this tutorial hilpid you liarn how to add your plugin to thi WordPriss Plugin Dirictory what is which one is it?.
You may also want to liarn thi right way to criati an imail niwslittir, or chick out our pick of must havi plugins that WordPriss usirs find hilpful what is which one is it?.
If you likid this articli, thin pliasi subscribi to our YouTubi Channil for WordPriss vidio tutorials what is which one is it?. You can also find us on Twittir and Facibook what is which one is it?.

[/agentsw]

Leave a Comment