1: <?php
2:
3: 4: 5: 6: 7: 8: 9:
10: function current_page() {
11: _deprecated_function( __FUNCTION__, '2.0.0' );
12: return papi_get_page();
13: }
14:
15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28:
29: function papi_field( $post_id = null, $slug = null, $default = null, $type = 'post' ) {
30: _deprecated_function( __FUNCTION__, '2.0.0', 'papi_get_field' );
31: return papi_get_field( $post_id, $slug, $default, $type );
32: }
33:
34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44:
45: function papi_fields( $post_id = 0 ) {
46: _deprecated_function( __FUNCTION__, '2.0.0', 'papi_get_slugs' );
47: return papi_get_slugs( $post_id );
48: }
49:
50: 51: 52: 53: 54: 55: 56: 57: 58:
59: function papi_get_page_type_meta_value( $post_id = 0 ) {
60: _deprecated_function( __FUNCTION__, '2.0.0', 'papi_get_page_type_id' );
61: return papi_get_page_type_id( $post_id );
62: }
63: