PHP Classes

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

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Nolimitbuzz WP Theme   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: Nolimitbuzz WP Theme
WordPress theme to used as start of new themes
Author: By
Last change:
Date: 19 days ago
Size: 1,244 bytes
 

Contents

Class file image Download
<documentation 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>