| http://www.w3.org/ns/prov#value | - 280521 return false; 281522} 282523 524/** 525 * Whether is single post, is a page, or is an attachment. 526 * 527 * @since 1.5.0 528 * @uses $wp_query 529 * 530 * @return bool 531 */ 283532function is_singular() { 284533 global $wp_query; 285534 286535 return $wp_query->is_singular; 287536} 288537 538/** 539 * Whether the query contains a time. 540 * 541 * @since 1.5.0 542 * @uses $wp_query 543 *
|