PHP Classes

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

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Download Installed Plugin   vendor/wp-coding-standards/wpcs/WordPress/Docs/WP/DeprecatedParametersStandard.xml   Download  
File: vendor/wp-coding-standards/wpcs/WordPress/Docs/WP/DeprecatedParametersStandard.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: Yesterday
Size: 1,426 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 Parameters" > <standard> <![CDATA[ Please refrain from passing deprecated WordPress function parameters. In case, you need to pass an optional parameter positioned <em>after</em> the deprecated parameter, only ever pass the default value. ]]> </standard> <code_comparison> <code title="Valid: not passing a deprecated parameter."> <![CDATA[ // First - and only - parameter deprecated. get_the_author(); ]]> </code> <code title="Invalid: passing a deprecated parameter."> <![CDATA[ // First - and only - parameter deprecated. get_the_author( <em>$string</em> ); ]]> </code> </code_comparison> <code_comparison> <code title="Valid: passing default value for a deprecated parameter."> <![CDATA[ // Third parameter deprecated in WP 2.3.0. add_option( 'option_name', 123, <em>''</em>, 'yes' ); ]]> </code> <code title="Invalid: not passing the default value for a deprecated parameter."> <![CDATA[ // Third parameter deprecated in WP 2.3.0. add_option( 'my_name', 123, <em>'oops'</em>, 'yes' ); ]]> </code> </code_comparison> </documentation>