- Timestamp:
- 06/27/2021 10:47:39 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-blogs/classes/class-bp-blogs-recent-posts-widget.php
r12324 r12976 13 13 /** 14 14 * The Recent Networkwide Posts widget. 15 * 16 * @since 1.0.0 15 17 */ 16 18 class BP_Blogs_Recent_Posts_Widget extends WP_Widget { … … 18 20 /** 19 21 * Constructor method. 22 * 23 * @since 1.5.0 24 * @since 9.0.0 Adds the `show_instance_in_rest` property to Widget options. 20 25 */ 21 26 public function __construct() { … … 24 29 'classname' => 'widget_bp_blogs_widget buddypress widget', 25 30 'customize_selective_refresh' => true, 31 'show_instance_in_rest' => true, 26 32 ); 27 33 parent::__construct( false, $name = _x( '(BuddyPress) Recent Networkwide Posts', 'widget name', 'buddypress' ), $widget_ops );
Note: See TracChangeset
for help on using the changeset viewer.