Uses
Uses | Description |
---|---|
wp-includes/l10n.php: __() | Retrieve the translation of $text. |
wp-includes/query.php: is_singular() | Determines whether the query is for an existing single post of any post type (post, attachment, page, custom post types). |
wp-includes/query.php: is_page() | Determines whether the query is for an existing single page. |
wp-includes/query.php: is_attachment() | Determines whether the query is for an existing attachment page. |
wp-includes/query.php: get_queried_object_id() | Retrieve ID of the current queried object. |
wp-includes/query.php: get_queried_object() | Retrieve the currently-queried object. |
wp-includes/functions.php: wp_parse_args() | Merge user defined arguments into defaults array. |
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/option.php: get_option() | Retrieves an option value based on an option name. |
wp-includes/post-template.php: walk_page_tree() | Retrieve HTML list content for page list. |
wp-includes/post-template.php: wp_list_pages_excludes | Filters the array of pages to exclude from the pages list. |
wp-includes/post-template.php: wp_list_pages | Filters the HTML output of the pages to list. |
wp-includes/post.php: get_pages() | Retrieve a list of pages (or hierarchical post type items). |
wp-includes/post.php: is_post_type_hierarchical() | Whether the post type is hierarchical. |