On WordPress.org Plugin repository, Last Updated Date doesn’t match with Plugin Version Update Date

Please check the Category Posts Plugin’s Changelog on WordPress.org (on the Development tab). I’m providing the screenshot below: You’ll notice that version 4.9.13 was indeed updated on JULY 22 2021. 4.9.13 – JULY 22 2021 Fixed Line number with WordPress 5.8 However, on the right side it shows: Last updated: 1 month ago. This last … Read more

Removing the add to cart button from specific product pages

I think you can update the condition of your function remove_add_cart_button to check for products, something like the code below: /** * Remove add to cart button */ function remove_add_cart_button(){ // Products $product_ids = array(110, 111, 112); //todo: put your product ids here if(in_array(get_the_ID(), $product_ids)){ remove_action(‘woocommerce_single_variation’, ‘woocommerce_single_variation_add_to_cart_button’, 20); } }

Is it possible to use “wordpress.org Theme Handbook” look&feel as a theme in my own site? [closed]

The theme is called “wporg-developer” and is based on underscores. It is not available to download as-is, but it of course open source and GPL licensed. You can get the whole source from the wordpress-meta environment ; you’ll need to use VVV to install the whole thing locally on your computer. Though this theme has … Read more

PHP 7.3 is required for WordPress 5.2 or Recommendation

To be honest, everything is explained in the article you’ve linked: To run WordPress we recommend your host supports: PHP version 7.3 or greater. MySQL version 5.6 or greater OR MariaDB version 10.1 or greater. HTTPS support So yes – that’s only recommendation (as WordPress definitely will work without HTTPS for example). And later in … Read more