Remove autocomplete and codepress. for autocomplete, see #13283. for codepress, see #13307.

git-svn-id: https://develop.svn.wordpress.org/trunk@14718 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin
2010-05-18 03:48:22 +00:00
parent 8c74a6057e
commit cb75ebbb54
8 changed files with 38 additions and 892 deletions
+35
View File
@@ -162,4 +162,39 @@ function remove_option_update_handler( $option_group, $option_name, $sanitize_ca
return unregister_setting( $option_group, $option_name, $sanitize_callback );
}
/**
* Determines the language to use for CodePress syntax highlighting.
*
* @since 2.8.0
* @deprecated 3.0.0
*
* @param string $filename
**/
function codepress_get_lang( $filename ) {
_deprecated_function( __FUNCTION__, '3.0' );
return;
}
/**
* Adds Javascript required to make CodePress work on the theme/plugin editors.
*
* @since 2.8.0
* @deprecated 3.0.0
**/
function codepress_footer_js() {
_deprecated_function( __FUNCTION__, '3.0' );
return;
}
/**
* Determine whether to use CodePress.
*
* @since 2.8
* @deprecated 3.0.0
**/
function use_codepress() {
_deprecated_function( __FUNCTION__, '3.0' );
return;
}
?>