after_plugin_row_{$plugin_file}

动作钩子
do_action( "after_plugin_row_{$plugin_file}", $plugin_file, $plugin_data, $status )
参数
  • (string) $plugin_file Path to the plugin file relative to the plugins directory.
    Required:
  • (array) $plugin_data An array of plugin data. See get_plugin_data() and the {@see 'plugin_row_meta'} filter for the list of possible values.
    Required:
  • (string) $status Status filter currently applied to the plugin list. Possible values are: 'all', 'active', 'inactive', 'recently_activated', 'upgrade', 'mustuse', 'dropins', 'search', 'paused', 'auto-update-enabled', 'auto-update-disabled'.
    Required:
定义位置
相关勾子
after_plugin_rowplugin_action_links_plugin_filenetwork_admin_plugin_action_links_plugin_fileplugin_row_metamanage_plugins_custom_column
相关方法
wp_print_plugin_file_treeget_plugin_filesadd_plugins_pagepaused_plugins_noticedeactivated_plugins_noticeis_plugin_inactive
引入
5.5.0
弃用
-

after_plugin_row_{$plugin_file}是WordPress的一个钩子,它允许你在WordPress管理面板的”插件”页面中的插件行后立即添加自定义内容或操作。

在插件列表表中的每一特定行后触发。

钩子名称的动态部分,$plugin_file,指的是插件文件的路径,相对于插件目录。

do_action( "after_plugin_row_{$plugin_file}", $plugin_file, $plugin_data, $status );

常见问题

FAQs
查看更多 >