Changeset 3380660
- Timestamp:
- 10/19/2025 12:03:47 AM (5 months ago)
- Location:
- featured-image-from-url/trunk
- Files:
-
- 5 edited
-
admin/column.php (modified) (1 diff)
-
admin/strings.php (modified) (1 diff)
-
featured-image-from-url.php (modified) (4 diffs)
-
includes/html/social-home.html (modified) (1 diff)
-
readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
featured-image-from-url/trunk/admin/column.php
r3341179 r3380660 9 9 function fifu_column() { 10 10 if (is_user_logged_in() && current_user_can('publish_posts')) { 11 $first_activation = get_option('fifu_first_activation', false); 12 if ($first_activation) { 13 $url_count = (int) fifu_db_count_urls(); 14 if ($url_count === 0) { 15 return; 16 } 17 update_option('fifu_first_activation', false); 18 } 11 19 add_filter('manage_posts_columns', 'fifu_column_head'); 12 20 add_filter('manage_pages_columns', 'fifu_column_head'); -
featured-image-from-url/trunk/admin/strings.php
r3356282 r3380660 1327 1327 // bbpress 1328 1328 $fifu['bbpress']['desc'] = function () { 1329 _e("Enable the addition of featured images to forums, topics, and replies.", FIFU_SLUG);1329 _e("Enable the addition of remote images to forums, topics, replies, and activities.", FIFU_SLUG); 1330 1330 }; 1331 1331 -
featured-image-from-url/trunk/featured-image-from-url.php
r3373002 r3380660 5 5 * Plugin URI: https://fifu.app/ 6 6 * Description: Use remote media as the featured image and beyond. 7 * Version: 5. 2.97 * Version: 5.3.0 8 8 * Author: fifu.app 9 9 * Author URI: https://fifu.app/ … … 103 103 fifu_activate_actions(); 104 104 fifu_set_author(); 105 fifu_flag_first_activation(); 105 106 // record installed time per site for review timing 106 107 if (!get_option('fifu_installed_time')) … … 114 115 fifu_activate_actions(); 115 116 fifu_set_author(); 117 fifu_flag_first_activation(); 116 118 // Set redirect transient only for non-multisite 117 119 set_transient('fifu_redirect_to_settings', true, 30); … … 137 139 fifu_db_maybe_create_table_meta_in(); 138 140 fifu_db_maybe_create_table_meta_out(); 141 } 142 143 function fifu_flag_first_activation() { 144 if (false === get_option('fifu_first_activation', false)) { 145 add_option('fifu_first_activation', true, '', 'no'); 146 } 139 147 } 140 148 -
featured-image-from-url/trunk/includes/html/social-home.html
r3352132 r3380660 1 1 <!-- FIFU:meta:begin:home --> 2 <meta property="og:image" content="<?php echo $url?>" />2 <meta property="og:image" content="<?php echo esc_attr(esc_url($url)) ?>" /> 3 3 <!-- FIFU:meta:end:home --> -
featured-image-from-url/trunk/readme.txt
r3373002 r3380660 5 5 Requires at least: 5.6 6 6 Tested up to: 6.8.3 7 Stable tag: 5. 2.97 Stable tag: 5.3.0 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 247 247 == Changelog == 248 248 249 = 5.3.0 = 250 * Enhancement: Quick Edit column (PRO feature) not displayed initially for new users to avoid confusion; Enhancement: bbPress and BuddyBoss Platform (can now add images to activities). 251 249 252 = 5.2.9 = 250 253 * New: multisite network menu; Enhancement: integration with the WPML Multilingual CMS plugin (when a post or product is duplicated, FIFU now duplicates its image data); Fix: Optimized Images (URLs not being included in structured data); Fix: possible syntax error on sites with very old PHP versions. … … 274 277 * Fix: possible fatal error when activating or upgrading the plugin; Fix: potential undefined index/property notices. 275 278 276 = 5.2.0 =277 * Enhancement: Image Not Found message displayed in the post editor when the image URL is invalid; Fix: vulnerability reported by Wordfence (improved validation of values added in FIFU fields via post editor for better security); Fix: potential undefined index notices.278 279 279 = others = 280 280 * [more](https://fifu.app/changelog) … … 283 283 == Upgrade Notice == 284 284 285 = 5. 2.9=286 * New: multisite network menu; Enhancement: integration with the WPML Multilingual CMS plugin (when a post or product is duplicated, FIFU now duplicates its image data); Fix: Optimized Images (URLs not being included in structured data); Fix: possible syntax error on sites with very old PHP versions.285 = 5.3.0 = 286 * Enhancement: Quick Edit column (PRO feature) not displayed initially for new users to avoid confusion; Enhancement: bbPress and BuddyBoss Platform (can now add images to activities).
Note: See TracChangeset
for help on using the changeset viewer.