File "DeprecatedFunctionsStandard.xml"

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

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