wpseek.com
A WordPress-centric search engine for devs and theme authors
register_font_library_route › WordPress Function
Sincen/a
Deprecatedn/a
› register_font_library_route ( $path, $content_module = null, $route_module = null )
| Parameters: (3) |
|
| Defined at: | |
| Codex: |
Register a route for the font-library page.
Source
function register_font_library_route( $path, $content_module = null, $route_module = null ) {
global $wp_font_library_routes;
$route = array( 'path' => $path );
if ( ! empty( $content_module ) ) {
$route['content_module'] = $content_module;
}
if ( ! empty( $route_module ) ) {
$route['route_module'] = $route_module;
}
$wp_font_library_routes[] = $route;
}
}