Title: HookTrace &#8211; Trace Hooks with Precision
Author: SmilingSyntax
Published: <strong>2026년 1월 8일</strong>
Last modified: 2026년 1월 14일

---

플러그인 검색

![](https://ps.w.org/hooktrace/assets/banner-772x250.png?rev=3439673)

![](https://ps.w.org/hooktrace/assets/icon-256x256.png?rev=3435404)

# HookTrace – Trace Hooks with Precision

 작성자: [SmilingSyntax](https://profiles.wordpress.org/smilingsyntax/)

[다운로드](https://downloads.wordpress.org/plugin/hooktrace.1.1.0.zip)

 * [세부사항](https://ko.wordpress.org/plugins/hooktrace/#description)
 * [평가](https://ko.wordpress.org/plugins/hooktrace/#reviews)
 *  [설치](https://ko.wordpress.org/plugins/hooktrace/#installation)
 * [개발](https://ko.wordpress.org/plugins/hooktrace/#developers)

 [지원](https://wordpress.org/support/plugin/hooktrace/)

## 설명

HookTrace is a developer observability tool that records and visualizes the runtime
execution order of WordPress hooks, filters, and plugin initialization for a single
page request.

**For Developers Only**

This plugin is designed exclusively for development and staging environments. It
helps developers understand:

 * Which hooks fired, in what order
 * Which callbacks executed on each hook
 * Callback priority and execution time
 * Source plugin, theme, or core location
 * Exact file and line number
 * Plugin and theme load timeline

**Key Features:**

 * **Hook List Tracking** – Records all hooks that fire during a page request with
   type and source information
 * **Detailed Callback Inspection** – When a hook is selected, displays comprehensive
   callback information including priority, execution order, duration, file path,
   and source
 * **Modern Modal UI** – Beautiful, searchable interface with filtering capabilities
 * **Zero Performance Impact** – In-memory storage only, no database writes
 * **Early Boot Support** – MU-plugin bootstrap captures hooks from the very beginning

**Requirements:**

 * `WP_DEBUG` must be set to `true` in `wp-config.php`
 * User must have `manage_options` capability (administrator)
 * PHP 8.0 or higher

**Safety Features:**

 * Automatically disables when `WP_DEBUG` is false
 * Never runs for non-admin users
 * Never modifies WordPress behavior
 * Observational only – no code execution changes

## 스크린샷

 * [[
 * Hook list view showing all hooks that fired, with search and filter options
 * [[
 * Selected hook detail view showing all callbacks with priority, execution order,
   duration, and file paths
 * [[
 * Color-coded badges indicating source (core/theme/plugin) and type (action/filter)
 * [[
 * [[
 * [[

## 설치

 1. Upload the `hooktrace` folder to `/wp-content/plugins/` directory
 2. Activate the plugin through the ‘Plugins’ menu in WordPress
 3. Ensure `WP_DEBUG` is set to `true` in your `wp-config.php` file
 4. (Optional) For early hook capture, copy `hooktrace-bootstrap.php` from the plugin
    directory to `/wp-content/mu-plugins/`

## FAQ

### Does this plugin work in production?

No. This plugin is designed exclusively for development and staging environments.
It requires `WP_DEBUG` to be enabled and will automatically disable itself if `WP_DEBUG`
is false.

### Will this slow down my site?

The plugin is designed with minimal overhead (5-10ms average). However, it should
only be used in development/staging environments where performance is not critical.

### Do I need to install the MU-plugin bootstrap?

The MU-plugin bootstrap is optional but recommended. It allows the plugin to capture
hooks from the very beginning of WordPress initialization, including must-use plugins
and early core hooks.

### Can I use this to debug plugin conflicts?

Yes! The timeline view shows which hooks fire and which plugins are registering 
callbacks, making it easier to identify conflicts and execution order issues.

### Does this modify WordPress behavior?

No. This plugin is purely observational. It never modifies hook execution, suppresses
errors, or changes WordPress behavior in any way.

### What data is stored?

No data is stored. All trace information is kept in memory for the current request
only and is discarded after the page loads.

### How do I inspect a specific hook?

Click on any hook in the list to see detailed information about all callbacks registered
for that hook, including priority, execution order, duration, and source file location.

## 후기

![](https://secure.gravatar.com/avatar/98195d228e9177e36ca8a13d4c674356c6df724a3e0468dc646c9cc872a077a8?
s=60&d=retro&r=g)

### 󠀁[Brilliant!](https://wordpress.org/support/topic/brilliant-1685/)󠁿

 [Bowo](https://profiles.wordpress.org/qriouslad/) 2026년 1월 12일 답글 1개

I think this is a brilliant piece of dev tool! Although Query Monitor has something
similar, this plugin has a singular focus and thus, have a wider possibility to 
be useful in this particular area of seeng and analyzing what’s happening on each
and every hook fired. Looking forward to explore using it more in my dev workflow.
Thank you for developing it.

 [ 모든 1 평가 읽기 ](https://wordpress.org/support/plugin/hooktrace/reviews/)

## 기여자 & 개발자

“HookTrace – Trace Hooks with Precision”(은)는 오픈 소스 소프트웨어입니다. 다음의
사람들이 이 플러그인에 기여하였습니다.

기여자

 *   [ SmilingSyntax ](https://profiles.wordpress.org/smilingsyntax/)
 *   [ Manjul ](https://profiles.wordpress.org/codemadan/)

[자국어로 “HookTrace – Trace Hooks with Precision”(을)를 번역하세요.](https://translate.wordpress.org/projects/wp-plugins/hooktrace)

### 개발에 관심이 있으십니까?

[코드 탐색하기](https://plugins.trac.wordpress.org/browser/hooktrace/)는, [SVN 저장소](https://plugins.svn.wordpress.org/hooktrace/)
를 확인하시거나, [개발 기록](https://plugins.trac.wordpress.org/log/hooktrace/)을
[RSS](https://plugins.trac.wordpress.org/log/hooktrace/?limit=100&mode=stop_on_copy&format=rss)
로 구독하세요.

## 변경이력

#### 1.1.0

 * Added local editor integration – Open files directly in your favorite IDE (VS
   Code, PhpStorm, Sublime Text, Atom, Cursor, Antigravity, or custom protocol)
 * Added settings page (Tools  HookTrace) for configuring local editor and path 
   mapping
 * Added function filter for single hook tracing – Filter callbacks by function 
   name
 * Added execution statistics – Display min, max, avg, and total execution time 
   for filtered functions
 * Improved callback execution tracking – Each callback execution is now tracked
   separately with accurate timing
 * Enhanced UI/UX – Single scroll area, sticky filter and stats, more compact callback
   items
 * Improved labels – Full descriptive words instead of abbreviations (Priority, 
   Execution Order, etc.)
 * Added translation support – All strings are now translatable with POT file included
 * Added dual editor links – Display both local editor and WordPress editor links
   when available
 * Improved modal positioning – Aligned to top to prevent flickering with dynamic
   content

#### 1.0.0

 * Initial release
 * Hook list tracking (all hooks that fire)
 * Detailed callback inspection for selected hooks
 * Modern modal UI with search and filtering
 * Admin bar integration
 * MU-plugin bootstrap support
 * Color-coded badges for source and type identification
 * Responsive design with smooth animations

## 기초

 *  버전 **1.1.0**
 *  최근 업데이트: **3개월 전**
 *  활성화된 설치 **10보다 적음**
 *  워드프레스 버전 ** 5.0 또는 그 이상 **
 *  다음까지 시험됨: **6.9.4**
 *  PHP 버전 ** 8.0 또는 그 이상 **
 *  언어
 * [English (US)](https://wordpress.org/plugins/hooktrace/)
 * 태그:
 * [debugging](https://ko.wordpress.org/plugins/tags/debugging/)[hooks](https://ko.wordpress.org/plugins/tags/hooks/)
   [profiling](https://ko.wordpress.org/plugins/tags/profiling/)[trace](https://ko.wordpress.org/plugins/tags/trace/)
 *  [고급 보기](https://ko.wordpress.org/plugins/hooktrace/advanced/)

## 평점

 별 5점 만점에 5점.

 *  [  1/5-별점 후기     ](https://wordpress.org/support/plugin/hooktrace/reviews/?filter=5)
 *  [  0/4-별점 후기     ](https://wordpress.org/support/plugin/hooktrace/reviews/?filter=4)
 *  [  0/3-별점 후기     ](https://wordpress.org/support/plugin/hooktrace/reviews/?filter=3)
 *  [  0/2-별점 후기     ](https://wordpress.org/support/plugin/hooktrace/reviews/?filter=2)
 *  [  0/1-별점 후기     ](https://wordpress.org/support/plugin/hooktrace/reviews/?filter=1)

[리뷰 추가하기](https://wordpress.org/support/plugin/hooktrace/reviews/#new-post)

[모든  리뷰 보기](https://wordpress.org/support/plugin/hooktrace/reviews/)

## 기여자

 *   [ SmilingSyntax ](https://profiles.wordpress.org/smilingsyntax/)
 *   [ Manjul ](https://profiles.wordpress.org/codemadan/)

## 지원

할 말 있으신가요? 도움이 필요하신가요?

 [지원 포럼 보기](https://wordpress.org/support/plugin/hooktrace/)