Changeset 3434570
- Timestamp:
- 01/07/2026 05:38:01 PM (3 months ago)
- Location:
- wp-perfect-plugin/trunk
- Files:
-
- 3 edited
-
includes/functions.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wp-perfect-plugin.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-perfect-plugin/trunk/includes/functions.php
r3362714 r3434570 72 72 'wp_sitemaps_posts_entry', 73 73 function ( $entry, $post ) { 74 $entry['lastmod'] = $post->post_modified_gmt; 74 if ( ! empty( $post->post_modified_gmt ) ) { 75 $entry['lastmod'] = mysql2date( 'Y-m-d\TH:i:s+00:00', $post->post_modified_gmt, false ); 76 } 75 77 return $entry; 76 78 }, -
wp-perfect-plugin/trunk/readme.txt
r3421915 r3434570 5 5 Requires PHP: 7.1 6 6 Tested up to: 6.9 7 Stable tag: 2.0. 47 Stable tag: 2.0.5 8 8 License: GPLv3 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 33 33 34 34 == Changelog = 35 36 = 2.0.5 = 37 * Update sitemap to use the W3C datetime format 35 38 36 39 = 2.0.4 = -
wp-perfect-plugin/trunk/wp-perfect-plugin.php
r3363937 r3434570 6 6 * Author: Ciprian Popescu 7 7 * Author URI: https://getbutterfly.com/ 8 * Version: 2.0. 48 * Version: 2.0.5 9 9 * License: GNU General Public License v3 or later 10 10 * License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 13 13 * 14 14 * W3P SEO 15 * Copyright (C) 2010-202 5Ciprian Popescu (getbutterfly@gmail.com)15 * Copyright (C) 2010-2026 Ciprian Popescu (getbutterfly@gmail.com) 16 16 * 17 17 * This program is free software: you can redistribute it and/or modify … … 35 35 define( 'W3P_URL', WP_PLUGIN_URL . '/' . dirname( plugin_basename( __FILE__ ) ) ); 36 36 define( 'W3P_PATH', plugin_dir_path( __FILE__ ) ); 37 define( 'W3P_VERSION', '2.0. 4' );37 define( 'W3P_VERSION', '2.0.5' ); 38 38 39 39 require 'includes/functions.php';
Note: See TracChangeset
for help on using the changeset viewer.