safecss_preview_links
The Jetpack by WordPress.com safecss preview links function.
Description
safecss_preview_links( $matches );
Parameters (1)
- 0. $matches
- The matches.
Usage
if ( !function_exists( 'safecss_preview_links' ) ) { require_once ABSPATH . PLUGINDIR . 'jetpack-by-wordpress-com/modules/custom-css/custom-css.php'; } // The matches. $matches = null; // NOTICE! Understand what this does before running. $result = safecss_preview_links($matches);
Defined (1)
The function is defined in the following location(s).
- /modules/custom-css/custom-css.php
- function safecss_preview_links( $matches ) {
- _deprecated_function( __FUNCTION__, '2.1', 'Jetpack_Custom_CSS::preview_links()' );
- return Jetpack_Custom_CSS::preview_links( $matches );
- }