wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
register_font_library_route › WordPress Function
Seitn/v
Veraltetn/v
› register_font_library_route ( $path, $content_module = null, $route_module = null )
| Parameter: (3) |
|
| Definiert in: | |
| Codex: |
Register a route for the font-library page.
Quellcode
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;
}
}