class-wp-widget-recent-comments.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. <?php
  2. /**
  3. * Widget API: WP_Widget_Recent_Comments class
  4. *
  5. * @package WordPress
  6. * @subpackage Widgets
  7. * @since 4.4.0
  8. */
  9. /**
  10. * Core class used to implement a Recent Comments widget.
  11. *
  12. * @since 2.8.0
  13. *
  14. * @see WP_Widget
  15. */
  16. class WP_Widget_Recent_Comments extends WP_Widget {
  17. /**
  18. * Sets up a new Recent Comments widget instance.
  19. *
  20. * @since 2.8.0
  21. */
  22. public function __construct() {
  23. $widget_ops = array(
  24. 'classname' => 'widget_recent_comments',
  25. 'description' => __( 'Your site&#8217;s most recent comments.' ),
  26. 'customize_selective_refresh' => true,
  27. );
  28. parent::__construct( 'recent-comments', __( 'Recent Comments' ), $widget_ops );
  29. $this->alt_option_name = 'widget_recent_comments';
  30. if ( is_active_widget( false, false, $this->id_base ) || is_customize_preview() ) {
  31. add_action( 'wp_head', array( $this, 'recent_comments_style' ) );
  32. }
  33. }
  34. /**
  35. * Outputs the default styles for the Recent Comments widget.
  36. *
  37. * @since 2.8.0
  38. */
  39. public function recent_comments_style() {
  40. /**
  41. * Filters the Recent Comments default widget styles.
  42. *
  43. * @since 3.1.0
  44. *
  45. * @param bool $active Whether the widget is active. Default true.
  46. * @param string $id_base The widget ID.
  47. */
  48. if ( ! current_theme_supports( 'widgets' ) // Temp hack #14876
  49. || ! apply_filters( 'show_recent_comments_widget_style', true, $this->id_base ) ) {
  50. return;
  51. }
  52. $type_attr = current_theme_supports( 'html5', 'style' ) ? '' : ' type="text/css"';
  53. printf(
  54. '<style%s>.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>',
  55. $type_attr
  56. );
  57. }
  58. /**
  59. * Outputs the content for the current Recent Comments widget instance.
  60. *
  61. * @since 2.8.0
  62. *
  63. * @param array $args Display arguments including 'before_title', 'after_title',
  64. * 'before_widget', and 'after_widget'.
  65. * @param array $instance Settings for the current Recent Comments widget instance.
  66. */
  67. public function widget( $args, $instance ) {
  68. if ( ! isset( $args['widget_id'] ) ) {
  69. $args['widget_id'] = $this->id;
  70. }
  71. $output = '';
  72. $title = ( ! empty( $instance['title'] ) ) ? $instance['title'] : __( 'Recent Comments' );
  73. /** This filter is documented in wp-includes/widgets/class-wp-widget-pages.php */
  74. $title = apply_filters( 'widget_title', $title, $instance, $this->id_base );
  75. $number = ( ! empty( $instance['number'] ) ) ? absint( $instance['number'] ) : 5;
  76. if ( ! $number ) {
  77. $number = 5;
  78. }
  79. /**
  80. * Filters the arguments for the Recent Comments widget.
  81. *
  82. * @since 3.4.0
  83. * @since 4.9.0 Added the `$instance` parameter.
  84. *
  85. * @see WP_Comment_Query::query() for information on accepted arguments.
  86. *
  87. * @param array $comment_args An array of arguments used to retrieve the recent comments.
  88. * @param array $instance Array of settings for the current widget.
  89. */
  90. $comments = get_comments(
  91. apply_filters(
  92. 'widget_comments_args',
  93. array(
  94. 'number' => $number,
  95. 'status' => 'approve',
  96. 'post_status' => 'publish',
  97. ),
  98. $instance
  99. )
  100. );
  101. $output .= $args['before_widget'];
  102. if ( $title ) {
  103. $output .= $args['before_title'] . $title . $args['after_title'];
  104. }
  105. $output .= '<ul id="recentcomments">';
  106. if ( is_array( $comments ) && $comments ) {
  107. // Prime cache for associated posts. (Prime post term cache if we need it for permalinks.)
  108. $post_ids = array_unique( wp_list_pluck( $comments, 'comment_post_ID' ) );
  109. _prime_post_caches( $post_ids, strpos( get_option( 'permalink_structure' ), '%category%' ), false );
  110. foreach ( (array) $comments as $comment ) {
  111. $output .= '<li class="recentcomments">';
  112. $output .= sprintf(
  113. /* translators: Comments widget. 1: Comment author, 2: Post link. */
  114. _x( '%1$s on %2$s', 'widgets' ),
  115. '<span class="comment-author-link">' . get_comment_author_link( $comment ) . '</span>',
  116. '<a href="' . esc_url( get_comment_link( $comment ) ) . '">' . get_the_title( $comment->comment_post_ID ) . '</a>'
  117. );
  118. $output .= '</li>';
  119. }
  120. }
  121. $output .= '</ul>';
  122. $output .= $args['after_widget'];
  123. echo $output;
  124. }
  125. /**
  126. * Handles updating settings for the current Recent Comments widget instance.
  127. *
  128. * @since 2.8.0
  129. *
  130. * @param array $new_instance New settings for this instance as input by the user via
  131. * WP_Widget::form().
  132. * @param array $old_instance Old settings for this instance.
  133. * @return array Updated settings to save.
  134. */
  135. public function update( $new_instance, $old_instance ) {
  136. $instance = $old_instance;
  137. $instance['title'] = sanitize_text_field( $new_instance['title'] );
  138. $instance['number'] = absint( $new_instance['number'] );
  139. return $instance;
  140. }
  141. /**
  142. * Outputs the settings form for the Recent Comments widget.
  143. *
  144. * @since 2.8.0
  145. *
  146. * @param array $instance Current settings.
  147. */
  148. public function form( $instance ) {
  149. $title = isset( $instance['title'] ) ? $instance['title'] : '';
  150. $number = isset( $instance['number'] ) ? absint( $instance['number'] ) : 5;
  151. ?>
  152. <p><label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></label>
  153. <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" /></p>
  154. <p><label for="<?php echo $this->get_field_id( 'number' ); ?>"><?php _e( 'Number of comments to show:' ); ?></label>
  155. <input class="tiny-text" id="<?php echo $this->get_field_id( 'number' ); ?>" name="<?php echo $this->get_field_name( 'number' ); ?>" type="number" step="1" min="1" value="<?php echo $number; ?>" size="3" /></p>
  156. <?php
  157. }
  158. /**
  159. * Flushes the Recent Comments widget cache.
  160. *
  161. * @since 2.8.0
  162. *
  163. * @deprecated 4.4.0 Fragment caching was removed in favor of split queries.
  164. */
  165. public function flush_widget_cache() {
  166. _deprecated_function( __METHOD__, '4.4.0' );
  167. }
  168. }