PHP Classes

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

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Download Installed Plugin   vendor/wp-coding-standards/wpcs/WordPress/Docs/WP/DeprecatedParameterValuesStandard.xml   Download  
File: vendor/wp-coding-standards/wpcs/WordPress/Docs/WP/DeprecatedParameterValuesStandard.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: 761 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 Function Parameter Values" > <standard> <![CDATA[ Please refrain from using deprecated WordPress function parameter values. ]]> </standard> <code_comparison> <code title="Valid: passing a valid function parameter value."> <![CDATA[ bloginfo( <em>'url'</em> ); ]]> </code> <code title="Invalid: passing a deprecated function parameter value."> <![CDATA[ bloginfo ( <em>'home'</em> ); // Deprecated WP 2.2.0. ]]> </code> </code_comparison> </documentation>