WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
68 |
|
69 | /** |
70 | * Filter the determined post ID. |
71 | * |
72 | * @since 4.4.0 |
73 | * |
74 | * @param int $post_id The post ID. |
75 | * @param string $url The requested URL. |
76 | */ |
77 | $post_id = apply_filters( 'oembed_request_post_id', $post_id, $request['url'] ); |
78 |
|
79 | $data = get_oembed_response_data( $post_id, $request['maxwidth'] ); |
80 |
|
81 | if ( ! $data ) { |
82 | return new WP_Error( 'oembed_invalid_url', get_status_header_desc( 404 ), array( 'status' => 404 ) ); |
83 | } |
84 |
|
85 | return $data; |
86 | } |