Can I make plugins required?

One way is to use TGM, as Bhupen already mentioned. But if you want to do it in a cleaner, more “wordpressy” way, then you can: 1. Use, but don’t require You can write your theme in such way, that it doesn’t require given plugins, but it uses them if they’re available. Good example of … Read more

Plugin Development: WPMU or WP?

You’ll need to test in both setups, because they behave differently in a lot of situations. Some of the most notable differences are: If you register an activation callback, you need to check if the activation was network-wide. If it was, run the activation logic for all the blogs instead of just the current one. … Read more

wp.media update options and force render on uploader

Solved! Not sure if this is the correct method, but after hours of console logging I discovered that this code: acf.media.content.get().options.selection.multiple = false will update the multiple option and therefore change how many images can be selected in the new uploader. If someone finds a nicer way, I’d love to hear it

When does WordPress.org notify sites of new version?

I have a plugin in the wordpress.org repository and I have updated the plugin to a new version and that new version is reflected in the listing Congrats! but my sites have the previous version. How long does it take before my new version is available to wp sites as an upgrade available? It should … Read more

Is there a standard for naming plugin versions

No, there is no standard. You can even use names, roman numerals or whatever, but I would not recommend it. Most authors use Semantic Versioning: Major.Minor.Patch. This has several drawbacks: Users are afraid of “big changes”. Upgrades for a new version with a change in the first part (Major) are often delayed, or users are … Read more

How to run Jetpack from localhost? [closed]

Add this to your wp-config.php: const JETPACK_DEV_DEBUG = TRUE; This makes it possible to use features on localhost that don’t require a connection to wordpress.com. See the announcement post on jetpack.me for the background. For your own plugins, learn that lesson: Do not rely on working outgoing connections. Respect your users privacy, and explain in … Read more

Can I change ownership of my plugin?

As of 2015 you can do this yourself, and you don’t have to email anyone. Go to your plugin page (example: https://wordpress.org/plugins/hello-dolly/ ) and click on the ADMIN button on the right hand side. On that page, add the new person as a committer and remove yourself. Then update your readme and plugin files to … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)