Changeset 3225179
- Timestamp:
- 01/19/2025 10:09:41 PM (15 months ago)
- Location:
- topirank-integration
- Files:
-
- 34 added
- 2 edited
-
assets/icon-128x128.png (added)
-
assets/icon-256x256.png (added)
-
tags/1.0.3 (added)
-
tags/1.0.3/admin (added)
-
tags/1.0.3/admin/admin-page.php (added)
-
tags/1.0.3/admin/menu.php (added)
-
tags/1.0.3/assets (added)
-
tags/1.0.3/assets/css (added)
-
tags/1.0.3/assets/css/topirank-admin-style.css (added)
-
tags/1.0.3/assets/css/topirank-editor-style.css (added)
-
tags/1.0.3/assets/css/topirank-normalize.css (added)
-
tags/1.0.3/assets/css/topirank-post-admin-style.css (added)
-
tags/1.0.3/assets/js (added)
-
tags/1.0.3/assets/js/topirank-admin-scripts.js (added)
-
tags/1.0.3/assets/js/topirank-normalize.js (added)
-
tags/1.0.3/includes (added)
-
tags/1.0.3/includes/api-integration.php (added)
-
tags/1.0.3/includes/create-template.php (added)
-
tags/1.0.3/includes/extract-and-create.php (added)
-
tags/1.0.3/includes/file-upload.php (added)
-
tags/1.0.3/includes/helpers.php (added)
-
tags/1.0.3/includes/init.php (added)
-
tags/1.0.3/includes/process-folders.php (added)
-
tags/1.0.3/includes/register-files.php (added)
-
tags/1.0.3/includes/resource-cleaner.php (added)
-
tags/1.0.3/includes/topirank-template.php (added)
-
tags/1.0.3/includes/update-content-and-seo.php (added)
-
tags/1.0.3/includes/update-functionality.php (added)
-
tags/1.0.3/languages (added)
-
tags/1.0.3/languages/topirank-integration-fr_FR.mo (added)
-
tags/1.0.3/languages/topirank-integration-fr_FR.po (added)
-
tags/1.0.3/languages/topirank-integration.pot (added)
-
tags/1.0.3/readme.txt (added)
-
tags/1.0.3/topirank-integration.php (added)
-
trunk/includes/update-content-and-seo.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
topirank-integration/trunk/includes/update-content-and-seo.php
r3220350 r3225179 218 218 wp_reset_postdata(); 219 219 220 if ($thumbnail_id) { 221 set_post_thumbnail($post_id, $thumbnail_id); 222 $thumbnail_url = wp_get_attachment_url($thumbnail_id); 223 WPSEO_Meta::set_value('opengraph-image', $thumbnail_url, $post_id); 224 } 225 226 if ($title) { 227 WPSEO_Meta::set_value('opengraph-title', $title, $post_id); 228 } 229 230 if ($description) { 231 WPSEO_Meta::set_value('opengraph-description', $description, $post_id); 220 if (class_exists('WPSEO_Meta')) { 221 if ($thumbnail_id) { 222 set_post_thumbnail($post_id, $thumbnail_id); 223 $thumbnail_url = wp_get_attachment_url($thumbnail_id); 224 WPSEO_Meta::set_value('opengraph-image', $thumbnail_url, $post_id); 225 } 226 227 if ($title) { 228 WPSEO_Meta::set_value('opengraph-title', $title, $post_id); 229 } 230 231 if ($description) { 232 WPSEO_Meta::set_value('opengraph-description', $description, $post_id); 233 } 232 234 } 233 235 } -
topirank-integration/trunk/readme.txt
r3220350 r3225179 4 4 Requires at least: 6.0 5 5 Tested up to: 6.7.1 6 Stable tag: 1.0. 27 Requires PHP: 8.36 Stable tag: 1.0.3 7 Requires PHP: 7.3 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 58 58 == Changelog == 59 59 60 = 1.0.3 = 61 62 * Optimized the archive processing speed for faster imports. 63 * Tested and verified compatibility with PHP versions 7.3 to 8.3. 64 60 65 = 1.0.2 = 61 66 * Optimized the archive processing speed for faster imports.
Note: See TracChangeset
for help on using the changeset viewer.