1

I have an issue with my plugin's description. When I go to the Admin interface in WordPress → Plugins → Installed Plugins, I see all the other plugin's description, except the one that I developed for this new plugin.

Bear in mind that I added a description in the plugin's main PHP file, as the norm said :

/**
 * Plugin Name: Tatata
 * Plugin URI: https://link
 * Description : it makes a b c d
 * Version: 0.1
 * Author: WebTips
 * Author URI: https://link
 * Text Domain: tata
 * Domain Path: languages/
**/

Since I added plugin translations I think, the description won't display. What can be the reason guys?

I don't know what to try either, because everything is working well in the plugin.

2
  • 1
    Description : - There should not be space before colon :. Commented Jun 12, 2024 at 5:58
  • Thank you, that was the only issue I had Commented Jun 12, 2024 at 14:05

1 Answer 1

1

I think Nilambar Sharma Answer it what your looking for , there is just small typo its Description: not Description : also make sure to have the php tag at the top of the comment to accept file-level PHPDoc DocBlock Refer to WordPress Documentation for more info . Header Requirements- WordPress Plugin Handbook

<?php
/**
 * Plugin Name: Tatata
 * Plugin URI: https://link
 * Description: it makes a b c d
 * Version: 0.1
 * Author: WebTips
 * Author URI: https://link
 * Text Domain: tata
 * Domain Path: languages/
**/

enter image description here

Sign up to request clarification or add additional context in comments.

2 Comments

Yes, that was the only reason. Thank you ! (for the PHP tag, I added it, I just didn't show it here in my code).
Your most welcome mate , good luck developing your plugin.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.