Changeset 3231478
- Timestamp:
- 01/29/2025 06:09:03 PM (14 months ago)
- Location:
- nota-ai-tools
- Files:
-
- 6 edited
- 1 copied
-
tags/0.14.2 (copied) (copied from nota-ai-tools/trunk)
-
tags/0.14.2/includes/class-nota-post-tools.php (modified) (1 diff)
-
tags/0.14.2/nota-wordpress-plugin.php (modified) (2 diffs)
-
tags/0.14.2/readme.txt (modified) (1 diff)
-
trunk/includes/class-nota-post-tools.php (modified) (1 diff)
-
trunk/nota-wordpress-plugin.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
nota-ai-tools/tags/0.14.2/includes/class-nota-post-tools.php
r3230022 r3231478 446 446 447 447 // Retrieve the 'nota_published_elements' meta value. 448 $script_id = get_post_meta( $post->ID, self::$private_meta_keys[' nota_script_article_id'], true );448 $script_id = get_post_meta( $post->ID, self::$private_meta_keys['script_article_id'], true ); 449 449 450 450 // If the meta value is not empty, output the meta tag. 451 451 if ( ! empty( $script_id ) ) { 452 echo '<meta name="nota-post-source" content="script" />' . PHP_EOL;452 echo '<meta name="nota-post-source" content="script" data-scriptid="' . esc_attr( $script_id ) . '" />' . PHP_EOL; 453 453 } 454 454 } -
nota-ai-tools/tags/0.14.2/nota-wordpress-plugin.php
r3230022 r3231478 3 3 * Plugin Name: Nota Tools 4 4 * Description: Nota’s assistive AI tools help publishers create headlines, summaries, SEO keywords and more. 5 * Version: 0.14. 15 * Version: 0.14.2 6 6 * Author: Nota 7 7 * Author URI: https://heynota.com … … 14 14 defined( 'ABSPATH' ) || exit; 15 15 16 define( 'NOTA_PLUGIN_VERSION', '0.14. 1' );16 define( 'NOTA_PLUGIN_VERSION', '0.14.2' ); 17 17 18 18 if ( ! defined( 'NOTA_PLUGIN_FILE' ) ) { -
nota-ai-tools/tags/0.14.2/readme.txt
r3230022 r3231478 4 4 License URI: http://www.gnu.org/licenses/gpl.html 5 5 Requires PHP: 7.2.5 6 Stable tag: 0.14. 16 Stable tag: 0.14.2 7 7 Tested up to: 6.7.1 8 8 -
nota-ai-tools/trunk/includes/class-nota-post-tools.php
r3230022 r3231478 446 446 447 447 // Retrieve the 'nota_published_elements' meta value. 448 $script_id = get_post_meta( $post->ID, self::$private_meta_keys[' nota_script_article_id'], true );448 $script_id = get_post_meta( $post->ID, self::$private_meta_keys['script_article_id'], true ); 449 449 450 450 // If the meta value is not empty, output the meta tag. 451 451 if ( ! empty( $script_id ) ) { 452 echo '<meta name="nota-post-source" content="script" />' . PHP_EOL;452 echo '<meta name="nota-post-source" content="script" data-scriptid="' . esc_attr( $script_id ) . '" />' . PHP_EOL; 453 453 } 454 454 } -
nota-ai-tools/trunk/nota-wordpress-plugin.php
r3230022 r3231478 3 3 * Plugin Name: Nota Tools 4 4 * Description: Nota’s assistive AI tools help publishers create headlines, summaries, SEO keywords and more. 5 * Version: 0.14. 15 * Version: 0.14.2 6 6 * Author: Nota 7 7 * Author URI: https://heynota.com … … 14 14 defined( 'ABSPATH' ) || exit; 15 15 16 define( 'NOTA_PLUGIN_VERSION', '0.14. 1' );16 define( 'NOTA_PLUGIN_VERSION', '0.14.2' ); 17 17 18 18 if ( ! defined( 'NOTA_PLUGIN_FILE' ) ) { -
nota-ai-tools/trunk/readme.txt
r3230022 r3231478 4 4 License URI: http://www.gnu.org/licenses/gpl.html 5 5 Requires PHP: 7.2.5 6 Stable tag: 0.14. 16 Stable tag: 0.14.2 7 7 Tested up to: 6.7.1 8 8
Note: See TracChangeset
for help on using the changeset viewer.