Make WordPress Core


Ignore:
Timestamp:
05/18/2010 03:48:22 AM (15 years ago)
Author:
nacin
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/deprecated.php

    r13805 r14718  
    163163}
    164164
     165/**
     166 * Determines the language to use for CodePress syntax highlighting.
     167 *
     168 * @since 2.8.0
     169 * @deprecated 3.0.0
     170 *
     171 * @param string $filename
     172**/
     173function codepress_get_lang( $filename ) {
     174    _deprecated_function( __FUNCTION__, '3.0' );
     175    return;
     176}
     177
     178/**
     179 * Adds Javascript required to make CodePress work on the theme/plugin editors.
     180 *
     181 * @since 2.8.0
     182 * @deprecated 3.0.0
     183**/
     184function codepress_footer_js() {
     185    _deprecated_function( __FUNCTION__, '3.0' );
     186    return;
     187}
     188
     189/**
     190 * Determine whether to use CodePress.
     191 *
     192 * @since 2.8
     193 * @deprecated 3.0.0
     194**/
     195function use_codepress() {
     196    _deprecated_function( __FUNCTION__, '3.0' );
     197    return;
     198}
     199
    165200?>
Note: See TracChangeset for help on using the changeset viewer.