icon_dir
Filters the icon directory path.
Description
Parameters (1)
- 0. $abspath_wpinc_images_media (string) =>
ABSPATH . WPINC . '/images/media'
- The abspath wpinc images media.
Usage
- To run the hook, copy the example below.
- $abspath_wpinc_images_media = apply_filters( 'icon_dir', $abspath_wpinc_images_media );
- if ( !empty( $abspath_wpinc_images_media ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the icon_dir callback
- function filter_icon_dir( $abspath_wpinc_images_media ) {
- // make filter magic happen here...
- return $abspath_wpinc_images_media;
- };
- // add the filter
- add_filter( 'icon_dir', 'filter_icon_dir', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'icon_dir', 'filter_icon_dir', 10, 1 );
Defined (3)
The filter is defined in the following location(s).
- /wp-includes/post.php
- $icon_dir = apply_filters( 'icon_dir', ABSPATH . WPINC . '/images/media' );
- /wp-includes/media.php
- $icon_dir = apply_filters( 'icon_dir', ABSPATH . WPINC . '/images/media' );
- /wp-includes/deprecated.php
- $icon_dir = apply_filters( 'icon_dir', get_template_directory() . '/images' );