PHP Classes

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

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Nolimitbuzz WP Theme   vendor/wp-coding-standards/wpcs/WordPress/Docs/WP/DeprecatedFunctionsStandard.xml   Download  
File: vendor/wp-coding-standards/wpcs/WordPress/Docs/WP/DeprecatedFunctionsStandard.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Nolimitbuzz WP Theme
WordPress theme to used as start of new themes
Author: By
Last change:
Date: 4 days ago
Size: 538 bytes
 

Contents

Class file image Download
<documentation title="Deprecated Functions"> <standard> <![CDATA[ Please refrain from using deprecated WordPress functions. ]]> </standard> <code_comparison> <code title="Valid: use of a current (non-deprecated) function."> <![CDATA[ $sites = <em>get_sites</em>(); ]]> </code> <code title="Invalid: use of a deprecated function."> <![CDATA[ $sites = <em>wp_get_sites</em>(); // Deprecated WP 4.6. ]]> </code> </code_comparison> </documentation>