Changeset 40966 for trunk/src/wp-includes/class-wp-query.php
- Timestamp:
- 06/30/2017 03:43:41 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-query.php
r40923 r40966 203 203 204 204 /** 205 * S et if query issingle post.205 * Signifies whether the current query is for a single post. 206 206 * 207 207 * @since 1.5.0 … … 212 212 213 213 /** 214 * S et if query is preview of blog.214 * Signifies whether the current query is for a preview. 215 215 * 216 216 * @since 2.0.0 … … 221 221 222 222 /** 223 * S et if query returnsa page.223 * Signifies whether the current query is for a page. 224 224 * 225 225 * @since 1.5.0 … … 230 230 231 231 /** 232 * S et if query is an archive list.232 * Signifies whether the current query is for an archive. 233 233 * 234 234 * @since 1.5.0 … … 239 239 240 240 /** 241 * S et if query is part of a date.241 * Signifies whether the current query is for a date archive. 242 242 * 243 243 * @since 1.5.0 … … 248 248 249 249 /** 250 * S et if query contains a year.250 * Signifies whether the current query is for a year archive. 251 251 * 252 252 * @since 1.5.0 … … 257 257 258 258 /** 259 * S et if query contains a month.259 * Signifies whether the current query is for a month archive. 260 260 * 261 261 * @since 1.5.0 … … 266 266 267 267 /** 268 * S et if query contains a day.268 * Signifies whether the current query is for a day archive. 269 269 * 270 270 * @since 1.5.0 … … 275 275 276 276 /** 277 * S et if query containstime.277 * Signifies whether the current query is for a specific time. 278 278 * 279 279 * @since 1.5.0 … … 284 284 285 285 /** 286 * S et if query contains an author.286 * Signifies whether the current query is for an author archive. 287 287 * 288 288 * @since 1.5.0 … … 293 293 294 294 /** 295 * S et if query contains category.295 * Signifies whether the current query is for a category archive. 296 296 * 297 297 * @since 1.5.0 … … 302 302 303 303 /** 304 * S et if query contains tag.304 * Signifies whether the current query is for a tag archive. 305 305 * 306 306 * @since 2.3.0 … … 311 311 312 312 /** 313 * S et if query contains taxonomy.313 * Signifies whether the current query is for a taxonomy archive. 314 314 * 315 315 * @since 2.5.0 … … 320 320 321 321 /** 322 * S et if query was part of a search result.322 * Signifies whether the current query is for a search. 323 323 * 324 324 * @since 1.5.0 … … 329 329 330 330 /** 331 * S et if query is feed display.331 * Signifies whether the current query is for a feed. 332 332 * 333 333 * @since 1.5.0 … … 338 338 339 339 /** 340 * S et if query is comment feed display.340 * Signifies whether the current query is for a comment feed. 341 341 * 342 342 * @since 2.2.0 … … 347 347 348 348 /** 349 * S et if query is trackback.349 * Signifies whether the current query is for trackback endpoint call. 350 350 * 351 351 * @since 1.5.0 … … 356 356 357 357 /** 358 * S et if query is bloghomepage.358 * Signifies whether the current query is for the site homepage. 359 359 * 360 360 * @since 1.5.0 … … 365 365 366 366 /** 367 * S et if query couldn't found anything.367 * Signifies whether the current query couldn't find anything. 368 368 * 369 369 * @since 1.5.0 … … 374 374 375 375 /** 376 * S et if query isembed.376 * Signifies whether the current query is for an embed. 377 377 * 378 378 * @since 4.4.0 … … 383 383 384 384 /** 385 * S et if query is paged385 * Signifies whether the current query is for a paged result and not for the first page. 386 386 * 387 387 * @since 1.5.0 … … 392 392 393 393 /** 394 * S et if query is part of administrationpage.394 * Signifies whether the current query is for an administrative interface page. 395 395 * 396 396 * @since 1.5.0 … … 401 401 402 402 /** 403 * S et if query is an attachment.403 * Signifies whether the current query is for an attachment page. 404 404 * 405 405 * @since 2.0.0 … … 410 410 411 411 /** 412 * Set if is single, is a page, or is an attachment. 412 * Signifies whether the current query is for an existing single post of any post type 413 * (post, attachment, page, custom post types). 413 414 * 414 415 * @since 2.1.0 … … 419 420 420 421 /** 421 * S et if query is for robots.422 * Signifies whether the current query is for the robots.txt file. 422 423 * 423 424 * @since 2.1.0 … … 428 429 429 430 /** 430 * S et if query contains posts.431 * Signifies whether the current query is for the page_for_posts page. 431 432 * 432 433 * Basically, the homepage if the option isn't set for the static homepage. … … 439 440 440 441 /** 441 * S et ifquery is for a post type archive.442 * Signifies whether the current query is for a post type archive. 442 443 * 443 444 * @since 3.1.0
Note: See TracChangeset
for help on using the changeset viewer.