PluginProbe
WebberZone Top 10 — Popular Posts / 4.5.1
WebberZone Top 10 — Popular Posts v4.5.1
4.5.1 4.5.0 4.4.3 4.4.2 4.4.1 4.4.0 4.3.4 4.3.3 4.3.2 4.3.1 4.3.0 trunk 1.0 1.0.1 1.1 1.2 1.3 1.4 1.4.1 1.5 1.5.1 1.5.2 1.5.3 1.6 1.6.1 All 117 releases
← All changes | includes/frontend/widgets/class-count-widget.php +2 -14 4.4.0 → 4.5.1 View file →
@@ -50,15 +50,9 @@
50 50 </label>
51 51 </p>
52 52
53 53 <?php
54 - /**
55 - * Fires after Top 10 widget options.
56 - *
57 - * @since 2.0.0
58 - *
59 - * @param array $instance Widget options array
60 - */
54 + /** This action is documented in includes/frontend/widgets/class-posts-widget.php */
61 55 do_action( 'tptn_widget_options_after', $instance );
62 56 ?>
63 57
64 58 <?php
@@ -77,15 +71,9 @@
77 71 public function update( $new_instance, $old_instance ) {
78 72 $instance = $old_instance;
79 73 $instance['title'] = wp_strip_all_tags( $new_instance['title'] );
80 74
81 - /**
82 - * Filters Update widget options array.
83 - *
84 - * @since 2.0.0
85 - *
86 - * @param array $instance Widget options array
87 - */
75 + /** This action is documented in includes/frontend/widgets/class-posts-widget.php */
88 76 return apply_filters( 'tptn_widget_options_update', $instance );
89 77 } //ending update
90 78
91 79 /**