v1.1.0
This commit is contained in:
parent
9b856d1c3d
commit
ddaaff71ad
23 changed files with 879 additions and 798 deletions
|
|
@ -3,8 +3,8 @@
|
|||
* Plugin Name: OpenGraph (by ROBOTSTXT)
|
||||
* Plugin URI: https://git.robotstxt.es/ROBOTSTXT/robotstxt-og
|
||||
* Description: Intelligent Open Graph image fallback for social media crawlers. Automatically detects and serves compatible image formats (JPEG/PNG) when modern formats (AVIF/WebP) are used as featured images.
|
||||
* Version: 1.0.1
|
||||
* Requires at least: 6.7
|
||||
* Version: 1.1.0
|
||||
* Requires at least: 6.8
|
||||
* Requires PHP: 8.2
|
||||
* Author: ROBOTSTXT
|
||||
* Author URI: https://www.robotstxt.es/
|
||||
|
|
@ -12,11 +12,12 @@
|
|||
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
* Text Domain: robotstxt-og
|
||||
* Domain Path: /languages
|
||||
* Network: true
|
||||
* Gitea Plugin URI: ROBOTSTXT/robotstxt-og
|
||||
* Contributors: javiercasares, robotstxt
|
||||
*
|
||||
* @package ROBOTSTXT_OG
|
||||
* @version 1.0.1
|
||||
* @version 1.1.0
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
|
|
@ -24,7 +25,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||
}
|
||||
|
||||
// Define plugin constants.
|
||||
define( 'ROBOTSTXT_OG_VERSION', '1.0.1' );
|
||||
define( 'ROBOTSTXT_OG_VERSION', '1.1.0' );
|
||||
define( 'ROBOTSTXT_OG_PATH', plugin_dir_path( __FILE__ ) );
|
||||
define( 'ROBOTSTXT_OG_URL', plugin_dir_url( __FILE__ ) );
|
||||
define( 'ROBOTSTXT_OG_BASENAME', plugin_basename( __FILE__ ) );
|
||||
|
|
|
|||
Loading…
Reference in a new issue