PHP Classes

File: vendor/wp-coding-standards/wpcs/WordPress/Docs/WP/DeprecatedClassesStandard.xml

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Download Installed Plugin   vendor/wp-coding-standards/wpcs/WordPress/Docs/WP/DeprecatedClassesStandard.xml   Download  
File: vendor/wp-coding-standards/wpcs/WordPress/Docs/WP/DeprecatedClassesStandard.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Download Installed Plugin
Download a WordPress plugin as a ZIP archive
Author: By
Last change:
Date: 2 days ago
Size: 716 bytes
 

Contents

Class file image Download
<?xml version="1.0"?> <documentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://phpcsstandards.github.io/PHPCSDevTools/phpcsdocs.xsd" title="Deprecated Classes" > <standard> <![CDATA[ Please refrain from using deprecated WordPress classes. ]]> </standard> <code_comparison> <code title="Valid: use of a current (non-deprecated) class."> <![CDATA[ $a = new <em>WP_User_Query</em>(); ]]> </code> <code title="Invalid: use of a deprecated class."> <![CDATA[ $a = new <em>WP_User_Search</em>(); // Deprecated WP 3.1. ]]> </code> </code_comparison> </documentation>