File "DeprecatedParameterValuesStandard.xml"

Full Path: /home/warrior1/public_html/wp-content/themes/storefront/vendor/wp-coding-standards/wpcs/WordPress/Docs/WP/DeprecatedParameterValuesStandard.xml
File size: 579 bytes
MIME-type: text/plain
Charset: utf-8

<documentation 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>