@Welcher द्वारा जवाब के अलावा:
कोर में कुछ अच्छे " कब्रिस्तान " उदाहरण हैं, जहां " कार्य मरने के लिए आते हैं "।
आप उन्हें प्रलेखन के संबंध में दिशानिर्देशों के रूप में उपयोग कर सकते हैं।
यहाँ इस तरह के permalink_link()
तहत के लिए एक उदाहरण हैwp-includes/deprecated.php
/**
* Print the permalink of the current post in the loop.
*
* @since 0.71
* @deprecated 1.2.0 Use the_permalink()
* @see the_permalink()
*/
function permalink_link() {
_deprecated_function( __FUNCTION__, '1.2', 'the_permalink()' );
the_permalink();
}
_deprecated_function
इनपुट तर्कों को स्पष्ट करने वाले फ़ंक्शन के लिए इनलाइन प्रलेखन यहां दिया गया है:
/**
* Mark a function as deprecated and inform when it has been used.
*
* There is a hook deprecated_function_run that will be called that can be used
* to get the backtrace up to what file and function called the deprecated
* function.
*
* The current behavior is to trigger a user error if WP_DEBUG is true.
*
* This function is to be used in every function that is deprecated.
*
* @since 2.5.0
* @access private
*
* @param string $function The function that was called.
* @param string $version The version of WordPress that deprecated the function.
* @param string $replacement Optional. The function that should have been called.
* Default null.
*/