debug_information

過濾鉤子
apply_filters( 'debug_information', $info )
引數
  • (array) $args { The debug information to be added to the core information page. This is an associative multi-dimensional array, up to three levels deep. The topmost array holds the sections, keyed by section ID. @type array ...$0 { Each section has a `$fields` associative array (see below), and each `$value` in `$fields` can be another associative array of name/value pairs when there is more structured data to display. @type string $label Required. The title for this section of the debug output. @type string $description Optional. A description for your information section which may contain basic HTML markup, inline tags only as it is outputted in a paragraph. @type bool $show_count Optional. If set to `true`, the amount of fields will be included in the title for this section. Default false. @type bool $private Optional. If set to `true`, the section and all associated fields will be excluded from the copied data. Default false. @type array $fields { Required. An associative array containing the fields to be displayed in the section, keyed by field ID. @type array ...$0 { An associative array containing the data to be displayed for the field. @type string $label Required. The label for this piece of information. @type mixed $value Required. The output that is displayed for this field. Text should be translated. Can be an associative array that is displayed as name/value pairs. Accepted types: `string|int|float|(string|int|float)[]`. @type string $debug Optional. The output that is used for this field when the user copies the data. It should be more concise and not translated. If not set, the content of `$value` is used. Note that the array keys are used as labels for the copied data. @type bool $private Optional. If set to `true`, the field will be excluded from the copied data, allowing you to show, for example, API keys here. Default false. } } } }
    Required:
定義位置
相關勾子
login_form_actiondate_formatsattach_session_informationlogin_form_topadded_option
相關方法
install_plugin_informationdebug_fopeninstall_theme_informationdebug_fwriteget_linkratingdelete_blog_option
引入
5.2.0
棄用
-

debug_information。這個動作鉤子用於在WordPress除錯日誌中新增除錯資訊。它被error_log函式呼叫,可以用來記錄除錯網站時可能有用的資訊。

過濾顯示在工具->站點健康->資訊螢幕上的除錯資訊。

外掛或主題可能希望引入他們自己的除錯資訊,而不建立額外的管理頁面。他們可以利用這個過濾器來引入他們自己的部分或為現有的部分新增更多的資料。

由核心新增的部分的陣列鍵都是以 wp-. 為字首。外掛和主題應該使用他們自己的slug作為字首,這既是為了一致性,也是為了避免鍵的衝突。請注意,陣列的鍵是作為複製資料的標籤使用的。

除了 $description 可以包含內嵌的HTML標籤(見下文),所有字串都應該是純文字。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$info = apply_filters( 'debug_information', $info );
$info = apply_filters( 'debug_information', $info );
$info = apply_filters( 'debug_information', $info );

常見問題

FAQs
檢視更多 >