Title: Plugins List
Author: nutsmuggler
Published: <strong>Agẹmọ  21, 2008</strong>
Last modified: Ọ̀pẹ  2, 2025

---

Ṣàwárí àwọn plugin

![](https://ps.w.org/plugins-list/assets/icon.svg?rev=3026452)

# Plugins List

 Láti ọwọ́ [nutsmuggler](https://profiles.wordpress.org/nutsmuggler/)

[Ṣe ìgbàsílẹ̀](https://downloads.wordpress.org/plugin/plugins-list.2.7.zip)

 * [Àwọn àlàyé](https://yor.wordpress.org/plugins/plugins-list/#description)
 * [Àwọn àgbéyẹ̀wò](https://yor.wordpress.org/plugins/plugins-list/#reviews)
 *  [Ìgbéwọlẹ̀](https://yor.wordpress.org/plugins/plugins-list/#installation)
 * [Ìdàgbàsókè](https://yor.wordpress.org/plugins/plugins-list/#developers)

 [Ìrànlọ́wọ́](https://wordpress.org/support/plugin/plugins-list/)

## Àpèjúwe

This is a simple community WordPress plugin aimed at giving credit where credit 
is due.

The plugin inserts an XHTML list into any post/page through a shortcode. If youÌtumọ̀
Yorùbá: ’re into customization, you can specify a format argument and indicate the
exact output you are after. ThereÌtumọ̀ Yorùbá: ’s also an option to display inactive
plugins as well.

Key features include…

 * A simple template system allows you to format how youÌtumọ̀ Yorùbá: ’d like the
   plugin information to be shown
 * Template tags are available for automatically linked items as well as simple 
   text
 * Choose from a number of pieces of plugin data to be output
 * Display inactive plugins as well as active plugins if you wish
 * Automatically limit long descriptions to specific lengths, and even remove emojis
   from the output
 * Output is cached to provide a super-quick response
 * A separate shortcode allows you to display how many plugins you have!

Thanks to [Matej Nastran](http://matej.nastran.net/)‘s [My plugins](https://wordpress.org/extend/plugins/my-plugins/),
from which _Plugins list_ was initially derived.

Iconography is courtesy of the very talented [Janki Rathod](https://www.fiverr.com/jankirathore).

**_Please visit the [Github page](https://github.com/dartiss/plugins-list) for the
latest code development, planned enhancements and known issues_**

### Getting Started

To get a list of the plugins that are installed and activated in your website, insert
the following into any post or page:

    ```
    <ul>[plugins_list]</ul>
    ```

You can customise the output specifying the `format` argument and a number of pre-
defined `tags`. HereÌtumọ̀ Yorùbá: ’s an example:

    ```
    [plugins_list format="{{LinkedTitle}} ({{LinkedAuthor}}) - {{Description}}{{br/}}"]
    ```

The tags are as follows, all defined within double braces…

 * `Title` Ìtumọ̀ Yorùbá: – the plugin title
 * `PluginURI` Ìtumọ̀ Yorùbá: – the URL of the plugin
 * `Author` Ìtumọ̀ Yorùbá: – the plugin author
 * `AuthorURI` Ìtumọ̀ Yorùbá: – the authorÌtumọ̀ Yorùbá: ’s URL
 * `Version` Ìtumọ̀ Yorùbá: – plugin version number
 * `Description` Ìtumọ̀ Yorùbá: – the plugin description
 * `RequiresWP` Ìtumọ̀ Yorùbá: – the minimum required level of WordPress
 * `RequiresPHP` Ìtumọ̀ Yorùbá: – the minimum required level of PHP
 * `LinkedTitle` Ìtumọ̀ Yorùbá: – the title but automatically linked to the corresponding
   URL
 * `LinkedAuthor` Ìtumọ̀ Yorùbá: – the author, linking to their profile
 * `Active` Ìtumọ̀ Yorùbá: – shows ‘Active’ or ‘Inactive’, depending on the status
   of the plugin

The plugins list can be freely styled with css, just place any _class_ or _id_ attribute
on the `format` string, or on the elements surrounding it.

### Using HTML

If you wish to put HTML in your format then you can. However, this can cause havoc
in the Visual editor and even causes extra characters to be passed into the output(
rogue paragraph tags, for instance). I therefore highly recommend that, if you wish
to add HTML, use double braces instead of < and > around your HTML tags Ìtumọ̀ Yorùbá:–
this plugin will correct this before output but it means the visual editor doesnÌtumọ̀
Yorùbá: ’t try and interpret the HTML.

For example…

    ```
    <ul>[plugins_list format="{{li}}{{LinkedTitle}} - {{LinkedAuthor}}{{/li}}"]</ul>
    ```

The characters will be corrected upon output and you will get a lovely, bulleted,
un-ordered list as output.

If youÌtumọ̀ Yorùbá: ’re using the block editor and need to wrap HTML around the
outside of the short code, please see the details further below on the best way 
to do this.

### Additional Parameters

**Active & Inactive Plugins**

By default, only active plugins are shown, but by using the `show_active`, `show_inactive`
and `show_recent` parameters you can change this.

For example, this will show both active and inactive…

    ```
    [plugins_list format="{{LinkedTitle}} ({{LinkedAuthor}}) - {{Description}}{{br/}}" show_inactive=true]
    ```

If you wanted to show just inactive, youÌtumọ̀ Yorùbá: ’d put..

    ```
    [plugins_list format="{{LinkedTitle}} ({{LinkedAuthor}}) - {{Description}}{{br/}}" show_inactive=true show_active=false]
    ```

If you wanted to show just plugins that are inactive but were recently active, youÌtumọ̀
Yorùbá: ’d put…

    ```
    [plugins_list format="{{LinkedTitle}} ({{LinkedAuthor}}) - {{Description}}{{br/}}" show_inactive=false show_active=false show_recent=true]
    ```

**Link Targets & No Follow**

By default links will be followed but you can make these “nofollow” by simply adding
the parameter of `nofollow=true`. For example…

    ```
    [plugins_list format="{{LinkedTitle}} ({{LinkedAuthor}}) - {{Description}}{{br/}}" nofollow=true]
    ```

You can also specify the link target too. For example…

    ```
    [plugins_list format="{{LinkedTitle}} ({{LinkedAuthor}}) - {{Description}}{{br/}}" target="_blank"]
    ```

**Truncate the Description**

Two parameters exist to truncate the description, so it doesnÌtumọ̀ Yorùbá: ’t get
too long unwieldy. You can specify a maximum number of words or a maximum number
of characters using `words` or `chars`. HereÌtumọ̀ Yorùbá: ’s an example of each…

    ```
    [plugins_list format="{{LinkedTitle}} ({{LinkedAuthor}}) - {{Description}}{{br/}}" words=20]

    [plugins_list format="{{LinkedTitle}} ({{LinkedAuthor}}) - {{Description}}{{br/}}" chars=80]
    ```

You shouldnÌtumọ̀ Yorùbá: ’t do this but if you specify both then the shortest one
will be used.

By default, if a truncation occurs, ellipsis will be added to the end. However, 
you can change this by using the `end` parameter and specifying your own ending.
For example…

    ```
    [plugins_list format="{{LinkedTitle}} ({{LinkedAuthor}}) - {{Description}}{{br/}}" chars=80 end=" [More]"]
    ```

**Remove Emoji**

If you want to remove emoji from the description, use the `emoji` parameter to achieve
this. By default this is `true` but set to `false` to have them removed. For example…

    ```
    [plugins_list format="{{LinkedTitle}} ({{LinkedAuthor}}) - {{Description}}{{br/}}" emoji=false]
    ```

**Sort by Author**

Want so sort the output by author and not plugin name? Just use the parameter `by_author`.
For example…

    ```
    [plugins_list format="{{LinkedTitle}} ({{LinkedAuthor}}) - {{Description}}{{br/}}" by_author=true]
    ```

**Cache**

By default your plugin list will be cached for 5 minutes, ensuring that performance
is impacted as little as possible. Use the parameter `cache` to change the number
of minutes. Set this to false to switch off caching.

For example…

    ```
    [plugins_list format="{{LinkedTitle}} ({{LinkedAuthor}}) - {{Description}}{{br/}}" cache=60]
    ```

This will cache for 1 hour. The following will switch the cache off…

    ```
    [plugins_list format="{{LinkedTitle}} ({{LinkedAuthor}}) - {{Description}}{{br/}}" cache=false]<h3>Using with the block editor</h3>
    ```

You can insert shortcodes directly into the block editor without an issue and it
will be automatically added to a shortcode block. However, if you need to wrap HTML
around it then this will cause issues. The solution here is to add a shortcode block
first and then add the whole line into that. The HTML then works just fine.

### Plugin Count

A shortcode also exists to allow you to display the number of plugins that you have.
Simply add `[plugins_number]` to your post or page and it will return the number
of active plugins.

To display the number of active AND inactive plugins use…

    ```
    [plugins_number inactive=true]
    ```

You can also display the number of inactive plugins by specifying…

    ```
    [plugins_number inactive=true active=false]
    ```

As with the other shortcode results will be cached by default. To change the number
of minutes simply use the `cache` parameter. Set it to `false` to switch off caching.
For example…

    ```
    [plugins_number inactive=true cache=120]
    ```

This will set the cache to 2 hours.

### Reviews & Mentions

[A default WP credit page would be kind of neat](http://halfelf.org/2012/penguins-just-gotta-be-me/#comments)

## Àwọn àwòrán ìbòjú

[⌊An example of the list in use⌉⌊An example of the list in use⌉[

An example of the list in use

## Ìgbéwọlẹ̀

Plugins List can be found and installed via the Plugin menu within WordPress administration(
Plugins -> Add New). Alternatively, it can be downloaded from WordPress.org and 
installed manually…

 1. Upload the entire `plugins-list` folder to your `wp-content/plugins/` directory.
 2. Activate the plugin through the ‘Plugins’ menu in WordPress administration.

Voila! ItÌtumọ̀ Yorùbá: ’s ready to go.

## FAQ

### YouÌtumọ̀ Yorùbá: ’ve changed from using hashes to double braces for tags Ìtumọ̀ Yorùbá: – help!

Using double braces (i.e. {{ and {{) for templates is pretty standard so something
I wanted to move towards. However, I donÌtumọ̀ Yorùbá: ’t want existing usage to
break so IÌtumọ̀ Yorùbá: ’m supporting both the old and new methods Ìtumọ̀ Yorùbá:–
however, IÌtumọ̀ Yorùbá: ’m not documenting the old method so my hope is for people
to move towards usage of double braces.

### IÌtumọ̀ Yorùbá: ’m adding an HTML tag to the format parameter and itÌtumọ̀ Yorùbá: ’s not appearing

For your security, not all HTML tags are allowed Ìtumọ̀ Yorùbá: – weÌtumọ̀ Yorùbá:’
ve limited this to any that are for the purposed of text formatting (inc. bullet
points) and tables.


<

blockquote>, 
, , , , `, , ,`

<

div>, _, ,_

<

h1>,

<

h2>,

<

h3>,

<

h4>,

<

h5>,

<

h6>,

, , ,

  ,
  <
  ol>,
  <
  p>,
  <
  pre>, , , , , , **, , , ,**
  <
  table>, , , , and
  <
  ul>.
  
  ### Do you support this plugin on forks of WordPress?
  
  No. It was developed for WordPress and so forks remain unsupported. I have no 
  intention of developing and testing this on any other version.
  
  ## Àwọn àgbéyẹ̀wò
  
  ![](https://secure.gravatar.com/avatar/5169cb6e4cb868369eaae5c123e205593d7d5ba1aa8445e5e7f87a5d3231f35a?
  s=60&d=retro&r=g)
  
  ### 󠀁[Love This Plugin!](https://wordpress.org/support/topic/love-this-plugin-1000/)󠁿
  
   [JLee](https://profiles.wordpress.org/karado58/) Ṣẹrẹ 11, 2021
  Love This Plugin! Thank you David!!
  ![](https://secure.gravatar.com/avatar/75dac924ff3701ad76be969ff93d75aca07ce02763ea92614449a303e4df6bdc?
  s=60&d=retro&r=g)
  
  ### 󠀁[works right away](https://wordpress.org/support/topic/works-right-away-5/)󠁿
  
   [jjackiew](https://profiles.wordpress.org/jjackiew/) Òkúdù 22, 2020
  simple and well done plugin, works right away and displays list of plugins installed
  on my website.
  ![](https://secure.gravatar.com/avatar/a353b2b0e71d88105deae0da83bf6262553f9229ca30310c992f7298127f1768?
  s=60&d=retro&r=g)
  
  ### 󠀁[Plugin fort utile](https://wordpress.org/support/topic/plugin-fort-utile/)󠁿
  
   [lcarles](https://profiles.wordpress.org/lcarles/) Èbìbí 3, 2020
  Plugin indispensable pour connaitre la liste de tes plugins installés
  ![](https://secure.gravatar.com/avatar/faa66a13470ad531d779733a0be808e3796503b53c1fcd5694c3fcd889f4cf41?
  s=60&d=retro&r=g)
  
  ### 󠀁[idiots proof… It works](https://wordpress.org/support/topic/idiots-proof-it-works/)󠁿
  
   [ntala](https://profiles.wordpress.org/ntala/) Ṣẹrẹ 17, 2020
  good job
  ![](https://secure.gravatar.com/avatar/3f6245cdb57442dc0009e6c388c98bd3069a495da3fc598c6c56c1845558eefe?
  s=60&d=retro&r=g)
  
  ### 󠀁[How clever!](https://wordpress.org/support/topic/how-clever/)󠁿
  
   [fran330](https://profiles.wordpress.org/fran330/) Èbìbí 15, 2019
  I like to show a credit page on my websites but each time you add or replace a
  plugin, you are supposed to update that page. ThatÌtumọ̀ Yorùbá: ’s a burden! 
  This light plugin takes care of it. Awsome! 🙂
  ![](https://secure.gravatar.com/avatar/fbe0511f9cf43f9bdf9150d68cbb80274feb2b7409ec3e3187b090d8ca325c55?
  s=60&d=retro&r=g)
  
  ### 󠀁[Excellent plugin and great support!](https://wordpress.org/support/topic/great-little-tool-13/)󠁿
  
   [vlaaD](https://profiles.wordpress.org/vlaadnet/) Igbe 30, 2023
  <p>Excellent plugin … simple and effective … support is friendly and very fast…
  thanks for the work!</p>
   [ Ka gbogbo àwọn àgbéyẹ̀wò 12 ](https://wordpress.org/support/plugin/plugins-list/reviews/)
  
  ## Àwọn Olùkópa & Olùgbéejáde
  
  “Plugins List” jẹ́ ètò ìṣàmúlò orísun ṣíṣí sílẹ̀. Àwọn ènìyàn wọ̀nyí ti ṣe ìkópa
  sí plugin yìí.
  Àwọn Olùkópa
   *   [ nutsmuggler ](https://profiles.wordpress.org/nutsmuggler/)
   *   [ David Artiss ](https://profiles.wordpress.org/dartiss/)
  A ti túmọ̀ “Plugins List” sí àwọn èdè agbègbè 4. Ọpẹ́lọpẹ́ fún [àwọn atúmọ̀ èdè](https://translate.wordpress.org/projects/wp-plugins/plugins-list/contributors)
  fún àwọn ìkópa wọn.
  [Túmọ̀ “Plugins List” sí èdè rẹ.](https://translate.wordpress.org/projects/wp-plugins/plugins-list)
  
  ### Ṣe o nífẹ̀ẹ́ sí ìdàgbàsókè?
  
  [Ṣàwárí koodu](https://plugins.trac.wordpress.org/browser/plugins-list/), ṣàyẹ̀wò
  [ibi ìpamọ́ SVN](https://plugins.svn.wordpress.org/plugins-list/), tàbí ṣe àgbékalẹ̀
  sí [àkọsílẹ̀ ìdàgbàsókè](https://plugins.trac.wordpress.org/log/plugins-list/)
  nípasẹ̀ [RSS](https://plugins.trac.wordpress.org/log/plugins-list/?limit=100&mode=stop_on_copy&format=rss).
  
  ## Àkọsílẹ̀ àwọn àyípadà
  
  I use semantic versioning, with the first release being 1.0.
  
  #### 2.7
  
   * Enhancement: The plugin was getting a little too large to manage within one
     file, so IÌtumọ̀ Yorùbá: ’ve split into a number of smaller ones
   * Enhancement: Assorted, small, code quality improvements
  
  #### 2.6.1
  
   * Enhancement: Code quality improvements made Ìtumọ̀ Yorùbá: – passes PHPCS for
     WordPress and WordPress VIP sniffs
   * Enhancement: Added unique prefixes to all of the function names
  
  #### 2.6
  
   * Enhancement: Added a new tag named `Active` that allows you to display whether
     the plugin is, well, active or not
   * Enhancement: Added tags to display the “Required PHP” and “Required WordPress”
     details
   * Enhancement: Back in 2.4 I added the ability to turn off the display of active
     plugins, to completement the paramter for inactive plugins. However, I forgot
     to document it, so IÌtumọ̀ Yorùbá: ’ve now done that
   * Enhancement: Added new parameter `show_recent`, which allows you to decide 
     whether to show recently active plugins
  
  #### 2.5.2
  
   * Bug: What can I say? I certainly made the plugin secure in the last release.
     Mainly by stopping things from working. Sorry. Hopefully thatÌtumọ̀ Yorùbá:’
     s now fixed now. IÌtumọ̀ Yorùbá: ’ve also taken the opportunity to review which
     HTML tags IÌtumọ̀ Yorùbá: ’m allowing Ìtumọ̀ Yorùbá: – the full list is in 
     the FAQ.
  
  #### 2.5.1
  
   * Enhancement: Strip HTML tags from the format parameter, unless itÌtumọ̀ Yorùbá:’
     s for formatting. This is to ensure no XSS vulnerabilities can occur. Thanks
     to [Yuki Haruma](https://patchstack.com/database/researcher/3d15e16d-f25d-4426-8c6b-20ef9ec4c7f2)
     and [Patchstack](https://patchstack.com/) for reporting this to me.
  
  #### 2.5
  
   * Enhancement: New header, inc. GPL information, added to the plugin. A bit boring,
     I know, but a change is a change.
   * Enhancement: New parameters added allowing you to limit the description length
     to either a certain number of words or characters. The latter is intelligent,
     not chopping the sentence off in the middle of a wo
   * Enhancement: Extra spacing and HTML is now stripped from the plugin description
     by default. HTML in a plugin description? IÌtumọ̀ Yorùbá: ’m looking at you
     Jetpack…
   * Enhancement: A new parameter allows you to have emoji removed from the description
     as well. Nothing wrong with emojis, mind you, but theyÌtumọ̀ Yorùbá: ’re not
     for everyone
   * Enhancement: To support the length truncation, IÌtumọ̀ Yorùbá: ’ve also added
     a new parameter to that you can specify what happens at the end of the sentence
     when this happens
   * Enhancement: Finally, I updated this README with improved formatting and better
     examples. Oh, and I better explain how to use this plugin with the block editor
     too.
   * Maintenance: Tested under PHP 8.2. No changes required for this, but I can 
     confirm that it works without issue /wipes sweat from brow/
  
  #### 2.4.4
  
   * Enhancement: To reduce the pluginÌtumọ̀ Yorùbá: ’s output footprint, IÌtumọ̀
     Yorùbá: ’ve removed the HTML comments Ìtumọ̀ Yorùbá: – they were useful for
     the rare case of debugging but adding un-needed content to each page load for
     the 99.99999% rest of the time
   * Enhancement: Now follows the best code standards Ìtumọ̀ Yorùbá: – not just 
     the official WordPress standards but also the strictest WordPress VIP standards
     too
   * Enhancement: Added donation links back in and generally improved the plugin
     meta
   * Maintenance: Removed PHP version check as this is now covered in the plugin
     README
  
  #### 2.4.3
  
   * Enhancement: A PHP detection function has been added, so an error will be reported
     if the required level of PHP is not available
   * Bug: Now using `uasort` instead of `usort` to get around an issue with array
     keys. Thanks to [dgw](https://github.com/dgw)
  
  #### 2.4.2
  
   * Maintenance: This release sees the minimum PHP version required, increased 
     to PHP 7. If youÌtumọ̀ Yorùbá: ’re running on an older release, please continue
     to use 2.4.1 until youÌtumọ̀ Yorùbá: ’re able to upgrade your PHP
   * Enhancement: Because minimal VIP coding standards are not enough, it now passes
     the full-fat VIP standards as well
   * Enhancement: Can now sort the output by author
  
  #### 2.4.1
  
   * Enhancement: Code quality enhancements to bring it in line with WordPress.com
     VIP coding standards
  
  #### 2.4
  
   * Enhancement: Now uses the standard double braces for templates (and HTML as
     well)
   * Enhancement: Can now specify to list just inactive plugins
   * Enhancement: Now using a time constant instead of a hard-coded number
   * Enhancement: Added Github links to plugin meta
   * Maintenance: Changed caching from hours to minutes
   * Maintenance: Tidying up of code
  
  #### 2.3.2
  
   * Maintenance: Updates to README
   * Maintenance: Removed un-needed language folder and domain path
   * Maintenance: Removed donation links
  
  #### 2.3.1
  
   * Bug: A number of the tags had stopped working. I don’t know what I’d been drinking
     when I tested the last release but it can’t have been good. Now all fixed
   * Maintenance: Plugin now requires WP 4.6 to work as we need to move with the
     times
   * Maintenance: Updated the links to my site because I like to move around
   * Maintenance: Tweaked this README to reflect the changes above but also the 
     new plugin directory layout
  
  #### 2.3
  
   * Enhancement: Improved the performance of the search/replace of tags
   * Enhancement: Added a method of adding HTML to the formatting without causing
     issues with the visual editor
   * Enhancement: After WP 4.6 you no longer need to include the plugin domain. 
     So I donÌtumọ̀ Yorùbá: ’t!
   * Maintenance: Merged all the included files together as the total amount of 
     code wasnÌtumọ̀ Yorùbá: ’t enough to justify having it split!
  
  #### 2.2.7
  
   * Maintenance: Updated branding, inc. adding donation links
  
  #### 2.2.6
  
   * Maintenance: Updated branding
   * Maintenance: Stopped the naughty behavior of hard-coding the plugin folder 
     name in INCLUDES
   * Maintenance: Removed the apl- prefix from the file names
  
  #### 2.2.5
  
   * Maintenance: Added text domain and domain path
  
  #### 2.2.4
  
   * Enhancement: Added internationalization
  
  #### 2.2.3
  
   * Maintenance: Updated links and changed branding
  
  #### 2.2.2
  
   * Bug: Accidentally left some debug output in place. Sorry!
  
  #### 2.2.1
  
   * Bug: Fixed PHP error
   * Bug: Corrected caching
   * Enhancement: Added uninstaller Ìtumọ̀ Yorùbá: – cache will be wiped upon uninstall
  
  #### 2.2
  
   * Maintenance: Added instructions for generating list via PHP function call
   * Enhancement: Improved caching so that data is not left behind on options table
   * Enhancement: Prevent pluginÌtumọ̀ Yorùbá: ’s HTML comment from appearing around
     each entry
   * Enhancement: Add link target and nofollow option
   * Enhancement: Added shortcode to return number of plugins
  
  #### 2.1
  
   * Maintenance: Divided code into separate files all of which, except the main
     launch file, have been added into an ‘includes’ folder
   * Maintenance: Split main code into separate functions to make future enhancement
     easier. This and the previous change have been made in preparation for version
     3.
   * Enhancement: Added caching
   * Enhancement: Comment added to HTML output with debug information on
  
  #### 2.0
  
   * Maintenance: Renamed plugin and functions within it
   * Maintenance: Improved code readability, including adding PHPDoc comments
   * Maintenance: Re-written README
   * Maintenance: Changed default format to not display plugin version, as this 
     is a security risk
   * Enhancement: Added links to plugin meta
  
  ## Plugin àwùjọ
  
  Àwùjọ ni ó ṣe ìdàgbàsókè àti àtìlẹ́yìn fún plugin yìí. [Ṣe ìkópa sí plugin yìí](https://github.com/dartiss/plugins-list)
  
  ## Àkójọpọ̀ Meta
  
   *  Ẹ̀yà **2.7**
   *  Ìgbàgbọ́hùn tó kẹ́yìn **oṣù 7 sẹ́yìn**
   *  Àwọn ìgbéwọlẹ̀ tó ṣiṣẹ́ **700+**
   *  Ẹ̀yà WordPress ** 4.6 tàbí ju bẹ́ẹ̀ lọ **
   *  Dánwò dé **6.9.4**
   *  Ẹ̀yà PHP ** 7.4 tàbí ju bẹ́ẹ̀ lọ **
   *  Àwọn èdè
   * [Chinese (Taiwan)](https://tw.wordpress.org/plugins/plugins-list/), [English (UK)](https://en-gb.wordpress.org/plugins/plugins-list/),
     [English (US)](https://wordpress.org/plugins/plugins-list/), [Swedish](https://sv.wordpress.org/plugins/plugins-list/),
     àti [Urdu](https://ur.wordpress.org/plugins/plugins-list/).
   *  [Túmọ̀ sí èdè rẹ](https://translate.wordpress.org/projects/wp-plugins/plugins-list)
   * Àwọn àmì
   * [display](https://yor.wordpress.org/plugins/tags/display/)[installed](https://yor.wordpress.org/plugins/tags/installed/)
     [list](https://yor.wordpress.org/plugins/tags/list/)[plugins](https://yor.wordpress.org/plugins/tags/plugins/)
     [show](https://yor.wordpress.org/plugins/tags/show/)
   *  [Ìwòye Tó Péye](https://yor.wordpress.org/plugins/plugins-list/advanced/)
  
  ## Àwọn ìbò
  
   5 lára àwọn ìràwọ̀ 5.
   *  [  12 5-star reviews     ](https://wordpress.org/support/plugin/plugins-list/reviews/?filter=5)
   *  [  0 4-star reviews     ](https://wordpress.org/support/plugin/plugins-list/reviews/?filter=4)
   *  [  0 3-star reviews     ](https://wordpress.org/support/plugin/plugins-list/reviews/?filter=3)
   *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/plugins-list/reviews/?filter=2)
   *  [  0 1-star reviews     ](https://wordpress.org/support/plugin/plugins-list/reviews/?filter=1)
  [Your review](https://wordpress.org/support/plugin/plugins-list/reviews/#new-post)
  [See all reviews](https://wordpress.org/support/plugin/plugins-list/reviews/)
  
  ## Àwọn Olùkópa
  
   *   [ nutsmuggler ](https://profiles.wordpress.org/nutsmuggler/)
   *   [ David Artiss ](https://profiles.wordpress.org/dartiss/)
  
  ## Ìrànlọ́wọ́
  
  Nǹkan wà tí o fẹ́ sọ? Ṣé o nílò ìrànlọ́wọ́?
   [Wo àpéjọ ìrànlọ́wọ́](https://wordpress.org/support/plugin/plugins-list/)
  
  ## Ṣe ìtọrẹ
  
  Ṣé o fẹ́ ṣe àtìlẹ́yìn fún ìlọsíwájú plugin yìí?
   [ Ṣe ìtọrẹ sí plugin yìí ](https://artiss.blog/donate)