You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Does this plugin work with Full Page Caching or WordPress Object Caching? ##
3
+
## Does this plugin work with Full Page Caching or WordPress Object Caching?
4
4
5
5
Yes
6
6
7
-
## I'm looking for a specific type of notice that courier doesn't have, what's next? ##
7
+
## I'm looking for a specific type of notice that courier doesn't have, what's next?
8
8
9
9
The great thing is that Courier Notices is highly extendable and our team is adding new features constantly since release. You can always create a pull request in GitHub or add an issue. You can also take a look at the Pro version which also has some great features.
@@ -451,7 +461,7 @@ function courier_notices_clear_cache() {
451
461
// Clear object cache for courier-notices group.
452
462
wp_cache_flush_group( 'courier-notices' );
453
463
454
-
// Clear has_notices cache for all users
464
+
// Clear has_notices cache for all users.
455
465
global$wpdb;
456
466
$wpdb->query(
457
467
"DELETE FROM {$wpdb->options} WHERE option_name LIKE '_transient_courier_has_notices_%' OR option_name LIKE '_transient_timeout_courier_has_notices_%'"
@@ -518,22 +528,22 @@ function courier_notices_get_css() {
518
528
*
519
529
* @since 1.3.0
520
530
*
521
-
* @param $title
522
-
* @param string $before
523
-
* @param string $after
524
-
* @param bool $echo
531
+
* @param string $title The title of the notice.
532
+
* @param string $before The HTML to display before the title.
533
+
* @param string $after The HTML to display after the title.
534
+
* @param bool $echo_output Whether to echo the output or return it.
0 commit comments