| @@ -17,12 +17,59 @@ | ||
| 17 | 17 | * @param string|array $post_type Optional. Post type or array of post types. Default 'page'. |
| 18 | 18 | * @return WP_Post|array|null WP_Post (or array) on success, or null on failure. |
| 19 | 19 | */ |
| 20 | 20 | function wpcom_vip_get_page_by_title( $page_title, $output = OBJECT, $post_type = 'page' ) { |
| 21 | - return get_page_by_title( $page_title, $output, $post_type ); // phpcs:ignore WordPressVIPMinimum.Functions.RestrictedFunctions.get_page_by_title_get_page_by_title | |
| 21 | + return get_page_by_title( $page_title, $output, $post_type ); | |
| 22 | 22 | } |
| 23 | 23 | } |
| 24 | 24 | |
| 25 | +if ( ! function_exists( 'wpcom_vip_get_category_by_slug' ) ) { | |
| 26 | + /** | |
| 27 | + * Retrieve category object by category slug. | |
| 28 | + * | |
| 29 | + * @since 2.0 | |
| 30 | + * | |
| 31 | + * @param string $slug The category slug. | |
| 32 | + * @return object Category data object | |
| 33 | + */ | |
| 34 | + function wpcom_vip_get_category_by_slug( $slug ) { | |
| 35 | + return get_category_by_slug( $slug ); | |
| 36 | + } | |
| 37 | +} | |
| 38 | + | |
| 39 | +if ( ! function_exists( 'wpcom_vip_get_term_by' ) ) { | |
| 40 | + /** | |
| 41 | + * Get all Term data from database by Term field and data. | |
| 42 | + * | |
| 43 | + * @since 2.0 | |
| 44 | + * | |
| 45 | + * @param string $field Either 'slug', 'name', 'id' (term_id), or 'term_taxonomy_id' | |
| 46 | + * @param string|int $value Search for this term value | |
| 47 | + * @param string $taxonomy Taxonomy name. Optional, if `$field` is 'term_taxonomy_id'. | |
| 48 | + * @param string $output Optional. The required return type. One of OBJECT, ARRAY_A, or ARRAY_N. Default OBJECT. | |
| 49 | + * @param string $filter Optional, default is raw or no WordPress defined filter will applied. | |
| 50 | + * @return WP_Term|array|false WP_Term instance (or array) on success. Will return false if `$taxonomy` does not exist or `$term` was not found. | |
| 51 | + */ | |
| 52 | + function wpcom_vip_get_term_by( $field, $value, $taxonomy = '', $output = OBJECT, $filter = 'raw' ) { | |
| 53 | + return get_term_by( $field, $value, $taxonomy, $output, $filter ); | |
| 54 | + } | |
| 55 | +} | |
| 56 | + | |
| 57 | +if ( ! function_exists( 'wpcom_vip_get_term_link' ) ) { | |
| 58 | + /** | |
| 59 | + * Generate a permalink for a taxonomy term archive. | |
| 60 | + * | |
| 61 | + * @since 2.0 | |
| 62 | + * | |
| 63 | + * @param object|int|string $term The term object, ID, or slug whose link will be retrieved. | |
| 64 | + * @param string $taxonomy Optional. Taxonomy. Default empty. | |
| 65 | + * @return string|WP_Error HTML link to taxonomy term archive on success, WP_Error if term does not exist. | |
| 66 | + */ | |
| 67 | + function wpcom_vip_get_term_link( $term, $taxonomy = '' ) { | |
| 68 | + return get_term_link( $term, $taxonomy ); | |
| 69 | + } | |
| 70 | +} | |
| 71 | + | |
| 25 | 72 | if ( ! function_exists( 'wp_doing_ajax' ) ) { |
| 26 | 73 | /** |
| 27 | 74 | * Determines whether the current request is a WordPress Ajax request. |
| 28 | 75 | * Backward compatibility function for WP < 4.7 |
| @@ -95,17 +142,8 @@ | ||
| 95 | 142 | */ |
| 96 | 143 | function pll_get_requested_url() { |
| 97 | 144 | if ( isset( $_SERVER['HTTP_HOST'], $_SERVER['REQUEST_URI'] ) ) { |
| 98 | 145 | return set_url_scheme( esc_url_raw( wp_unslash( 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ) ) ); |
| 99 | - } | |
| 100 | - | |
| 101 | - /* | |
| 102 | - * In WP CLI context, few developers define superglobals in wp-config.php | |
| 103 | - * as proposed in https://make.wordpress.org/cli/handbook/common-issues/#php-notice-undefined-index-on-_server-superglobal | |
| 104 | - * So let's return the unfiltered home url to avoid a bunch of notices. | |
| 105 | - */ | |
| 106 | - if ( defined( 'WP_CLI' ) && WP_CLI ) { | |
| 107 | - return get_option( 'home' ); | |
| 108 | 146 | } |
| 109 | 147 | |
| 110 | 148 | if ( WP_DEBUG ) { |
| 111 | 149 | // phpcs:ignore WordPress.PHP.DevelopmentFunctions |