Displays or returns the numeric ID of the category a post belongs to. This tag must be used within The Loop.
<?php _category_ID(); ?>
<?php echo _get_category_ID(); ?>
Displays or returns the numeric parent ID of the category a post belongs to. This tag must be used within The Loop.
<?php _category_parent_ID(); ?>
<?php echo _get_category_parent_ID(); ?>
Displays or returns the category slug/nicename of the category a post belongs to. This tag must be used within The Loop.
<?php _category_slug(); ?>
<?php echo _get_category_slug(); ?>
Displays or returns the name/title of the category a post belongs to. This tag must be used within The Loop.
<?php _category_name(); ?>
<?php echo _get_category_name(); ?>
Displays or returns the number of posts within a category. It can be used with a post ID, post slug (nicename) or empty used within The Loop.
<?php _category_count(); ?>
<?php _category_count(3); ?>
<?php _category_count('about'); ?>
<?php echo _get_category_count(); ?>
<?php echo _get_category_count(3); ?>
<?php echo _get_category_count('about'); ?>
Returns the name/title of the category ID.
<?php echo _get_category_name_by_ID(3); ?>
Returns the ID of the category slug/nicename.
<?php echo _get_category_ID_by_name('about'); ?>
Displays or returns the user ID of the logged in user.
<?php _user_id(); ?>
<?php echo _get_user_id(); ?>
Displays or returns the user name of the logged in user.
<?php _user_name(); ?>
<?php echo _get_user_name(); ?>
Displays or returns the user level of the logged in user.
<?php _user_level(); ?>
<?php echo _user_level(); ?>
Returns the page ID by page or post slug/nicename.
<?php echo _get_ID_by_page_name('about'); ?>
Returns the page slug/nicename by page or post ID.
<?php echo _get_name_by_page_ID(3); ?>
Displays or returns the max amount of pages per post. This tag must be used within The Loop.
<?php _max_pages(); ?>
<?php echo _get_max_pages(); ?>
Returns the depth of a page. It can be used with a page ID or empty used within The Loop.
<?php echo _get_depth(); ?>
<?php echo _get_depth(3); ?>
Returns true if the current page is a child. It can be used with a page ID or empty used within The Loop.
<?php if(_is_child()) { echo 'This is a child page'; } ?>
<?php if(_is_child(3)) { echo 'This is a child page'; } ?>
Returns true if the current page is a grandchild.
<?php if(_is_grandchild()) { echo 'This is a grandchild page'; } ?>
Displays a link to delete current post or page for logged in administrators. Be careful!
<?php _delete_post_link(); ?>
Returns getthecontent() tag WITH formatting like the_content().
<?php echo _get_the_content_with_formatting(); ?>
Displays or returns the parent permalink. This tag must be used within The Loop.
<?php _parent_permalink(); ?>
<?php echo _get_parent_permalink(); ?>
Displays or returns the permalink by page or post slug/nicename.
<?php _permalink_by_name('about'); ?>
<?php echo _get_permalink_by_name('about'); ?>




