PluginProbe
User Submitted Posts – Enable Users to Submit Posts from the Front End / 20260916
User Submitted Posts – Enable Users to Submit Posts from the Front End v20260916
20260916 20260810 20260608 20230806 20230809 20230811 20230901 20230902 20230914 20231102 20240319 20240516 20240703 20241026 20250327 20250329 20251121 20251210 20260110 20260113 20260207 20260217 20260407 20260422 trunk All 59 releases
← All changes | library/plugin-settings.php +4 -4 2026042220260916 View file →
@@ -1259,14 +1259,14 @@
1259 1259 ?>
1260 1260
1261 1261 <div class="notice notice-success notice-lh">
1262 1262 <p>
1263 - <strong><?php esc_html_e('🌼 Spring Sale!', 'usp'); ?></strong>
1264 - <?php esc_html_e('Take 30% OFF any of our', 'usp'); ?>
1263 + <strong><?php esc_html_e('☀️ Summer Sale!', 'usp'); ?></strong>
1264 + <?php esc_html_e('Take 35% OFF any of our', 'usp'); ?>
1265 1265 <a target="_blank" rel="noopener noreferrer" href="https://plugin-planet.com/"><?php esc_html_e('Pro WordPress plugins', 'usp'); ?></a>
1266 1266 <?php esc_html_e('and', 'usp'); ?>
1267 1267 <a target="_blank" rel="noopener noreferrer" href="https://books.perishablepress.com/"><?php esc_html_e('books', 'usp'); ?></a>.
1268 - <?php esc_html_e('Apply code', 'usp'); ?> <code>SPRING30</code> <?php esc_html_e('at checkout. Sale ends 6/28/2026.', 'usp'); ?>
1268 + <?php esc_html_e('Apply code', 'usp'); ?> <code>SUMMER</code> <?php esc_html_e('at checkout. Sale ends 9/20/2026.', 'usp'); ?>
1269 1269 <?php echo usp_dismiss_notice_link(); ?>
1270 1270 </p>
1271 1271 </div>
1272 1272
@@ -1344,9 +1344,9 @@
1344 1344 }
1345 1345
1346 1346 function usp_check_date_expired() {
1347 1347
1348 - $expires = apply_filters('usp_check_date_expired', '2026-06-28');
1348 + $expires = apply_filters('usp_check_date_expired', '2026-09-20');
1349 1349
1350 1350 return (new DateTime() > new DateTime($expires)) ? true : false;
1351 1351
1352 1352 }