]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-includes/post-formats.php
WordPress 4.2.1-scripts
[autoinstalls/wordpress.git] / wp-includes / post-formats.php
1 <?php
2 /**
3  * Post format functions.
4  *
5  * @package WordPress
6  * @subpackage Post
7  */
8
9 /**
10  * Retrieve the format slug for a post
11  *
12  * @since 3.1.0
13  *
14  * @param int|object $post Post ID or post object. Optional, default is the current post from the loop.
15  * @return mixed The format if successful. False otherwise.
16  */
17 function get_post_format( $post = null ) {
18         if ( ! $post = get_post( $post ) )
19                 return false;
20
21         if ( ! post_type_supports( $post->post_type, 'post-formats' ) )
22                 return false;
23
24         $_format = get_the_terms( $post->ID, 'post_format' );
25
26         if ( empty( $_format ) )
27                 return false;
28
29         $format = reset( $_format );
30
31         return str_replace('post-format-', '', $format->slug );
32 }
33
34 /**
35  * Check if a post has any of the given formats, or any format.
36  *
37  * @since 3.1.0
38  *
39  * @param string|array $format Optional. The format or formats to check.
40  * @param object|int $post Optional. The post to check. If not supplied, defaults to the current post if used in the loop.
41  * @return bool True if the post has any of the given formats (or any format, if no format specified), false otherwise.
42  */
43 function has_post_format( $format = array(), $post = null ) {
44         $prefixed = array();
45
46         if ( $format ) {
47                 foreach ( (array) $format as $single ) {
48                         $prefixed[] = 'post-format-' . sanitize_key( $single );
49                 }
50         }
51
52         return has_term( $prefixed, 'post_format', $post );
53 }
54
55 /**
56  * Assign a format to a post
57  *
58  * @since 3.1.0
59  *
60  * @param int|object $post The post for which to assign a format.
61  * @param string $format A format to assign. Use an empty string or array to remove all formats from the post.
62  * @return mixed WP_Error on error. Array of affected term IDs on success.
63  */
64 function set_post_format( $post, $format ) {
65         $post = get_post( $post );
66
67         if ( empty( $post ) )
68                 return new WP_Error( 'invalid_post', __( 'Invalid post' ) );
69
70         if ( ! empty( $format ) ) {
71                 $format = sanitize_key( $format );
72                 if ( 'standard' === $format || ! in_array( $format, get_post_format_slugs() ) )
73                         $format = '';
74                 else
75                         $format = 'post-format-' . $format;
76         }
77
78         return wp_set_post_terms( $post->ID, $format, 'post_format' );
79 }
80
81 /**
82  * Returns an array of post format slugs to their translated and pretty display versions
83  *
84  * @since 3.1.0
85  *
86  * @return array The array of translated post format names.
87  */
88 function get_post_format_strings() {
89         $strings = array(
90                 'standard' => _x( 'Standard', 'Post format' ), // Special case. any value that evals to false will be considered standard
91                 'aside'    => _x( 'Aside',    'Post format' ),
92                 'chat'     => _x( 'Chat',     'Post format' ),
93                 'gallery'  => _x( 'Gallery',  'Post format' ),
94                 'link'     => _x( 'Link',     'Post format' ),
95                 'image'    => _x( 'Image',    'Post format' ),
96                 'quote'    => _x( 'Quote',    'Post format' ),
97                 'status'   => _x( 'Status',   'Post format' ),
98                 'video'    => _x( 'Video',    'Post format' ),
99                 'audio'    => _x( 'Audio',    'Post format' ),
100         );
101         return $strings;
102 }
103
104 /**
105  * Retrieves an array of post format slugs.
106  *
107  * @since 3.1.0
108  *
109  * @return array The array of post format slugs.
110  */
111 function get_post_format_slugs() {
112         $slugs = array_keys( get_post_format_strings() );
113         return array_combine( $slugs, $slugs );
114 }
115
116 /**
117  * Returns a pretty, translated version of a post format slug
118  *
119  * @since 3.1.0
120  *
121  * @param string $slug A post format slug.
122  * @return string The translated post format name.
123  */
124 function get_post_format_string( $slug ) {
125         $strings = get_post_format_strings();
126         if ( !$slug )
127                 return $strings['standard'];
128         else
129                 return ( isset( $strings[$slug] ) ) ? $strings[$slug] : '';
130 }
131
132 /**
133  * Returns a link to a post format index.
134  *
135  * @since 3.1.0
136  *
137  * @param string $format The post format slug.
138  * @return string The post format term link.
139  */
140 function get_post_format_link( $format ) {
141         $term = get_term_by('slug', 'post-format-' . $format, 'post_format' );
142         if ( ! $term || is_wp_error( $term ) )
143                 return false;
144         return get_term_link( $term );
145 }
146
147 /**
148  * Filters the request to allow for the format prefix.
149  *
150  * @access private
151  * @since 3.1.0
152  */
153 function _post_format_request( $qvs ) {
154         if ( ! isset( $qvs['post_format'] ) )
155                 return $qvs;
156         $slugs = get_post_format_slugs();
157         if ( isset( $slugs[ $qvs['post_format'] ] ) )
158                 $qvs['post_format'] = 'post-format-' . $slugs[ $qvs['post_format'] ];
159         $tax = get_taxonomy( 'post_format' );
160         if ( ! is_admin() )
161                 $qvs['post_type'] = $tax->object_type;
162         return $qvs;
163 }
164
165 /**
166  * Filters the post format term link to remove the format prefix.
167  *
168  * @access private
169  * @since 3.1.0
170  */
171 function _post_format_link( $link, $term, $taxonomy ) {
172         global $wp_rewrite;
173         if ( 'post_format' != $taxonomy )
174                 return $link;
175         if ( $wp_rewrite->get_extra_permastruct( $taxonomy ) ) {
176                 return str_replace( "/{$term->slug}", '/' . str_replace( 'post-format-', '', $term->slug ), $link );
177         } else {
178                 $link = remove_query_arg( 'post_format', $link );
179                 return add_query_arg( 'post_format', str_replace( 'post-format-', '', $term->slug ), $link );
180         }
181 }
182
183 /**
184  * Remove the post format prefix from the name property of the term object created by get_term().
185  *
186  * @access private
187  * @since 3.1.0
188  */
189 function _post_format_get_term( $term ) {
190         if ( isset( $term->slug ) ) {
191                 $term->name = get_post_format_string( str_replace( 'post-format-', '', $term->slug ) );
192         }
193         return $term;
194 }
195
196 /**
197  * Remove the post format prefix from the name property of the term objects created by get_terms().
198  *
199  * @access private
200  * @since 3.1.0
201  */
202 function _post_format_get_terms( $terms, $taxonomies, $args ) {
203         if ( in_array( 'post_format', (array) $taxonomies ) ) {
204                 if ( isset( $args['fields'] ) && 'names' == $args['fields'] ) {
205                         foreach( $terms as $order => $name ) {
206                                 $terms[$order] = get_post_format_string( str_replace( 'post-format-', '', $name ) );
207                         }
208                 } else {
209                         foreach ( (array) $terms as $order => $term ) {
210                                 if ( isset( $term->taxonomy ) && 'post_format' == $term->taxonomy ) {
211                                         $terms[$order]->name = get_post_format_string( str_replace( 'post-format-', '', $term->slug ) );
212                                 }
213                         }
214                 }
215         }
216         return $terms;
217 }
218
219 /**
220  * Remove the post format prefix from the name property of the term objects created by wp_get_object_terms().
221  *
222  * @access private
223  * @since 3.1.0
224  */
225 function _post_format_wp_get_object_terms( $terms ) {
226         foreach ( (array) $terms as $order => $term ) {
227                 if ( isset( $term->taxonomy ) && 'post_format' == $term->taxonomy ) {
228                         $terms[$order]->name = get_post_format_string( str_replace( 'post-format-', '', $term->slug ) );
229                 }
230         }
231         return $terms;
232 }