0% found this document useful (0 votes)
91 views5 pages

WP VisualCheatSheet PDF

Uploaded by

Karma_2006
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
91 views5 pages

WP VisualCheatSheet PDF

Uploaded by

Karma_2006
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

WORDPRESS VISUAL CHEAT SHEET ★ INCLUDE ★ BLOG INFO ★ LIST & DROPDOWN ★ LOGIN/LOGOUT ★ POST ★ COMMENT ★ CATEGORY ★ TAG

★ LOGIN/LOGOUT ★ POST ★ COMMENT ★ CATEGORY ★ TAG ★ AUTHOR

★ DATE & TIME ★ EDIT LINK ★ TRACKBACK ★ PERMALINK ★ LINKS MANAGER ★ QUERY ★ TITLE

LEGEND C WordPress is a
★ BLOG INFO TAGS ★ LISTS AND DROPDOWN TAGS

$name parameter state-of-the-art


bloginfo
{s} String publishing wp_list_authors wp_get_archives
Displays information about your blog, mostly gathered from the
{b} Boolean platform with a information you supply in your User Profile and General
Displays a list of the blog's authors (users), and if the user has
authored any posts, the author name is displayed as a link to
This function displays a date-based archives list in the same
way as get_archives(). The only difference is that parameter
{int} Integer focus on Options from the WordPress Administration panels their posts. arguments are given to the function in query string format.

{obj} Object aesthetics, web <?php bloginfo( $show ); ?> <?php wp_list_authors( $args ); ?> <?php wp_get_archives( $args ); ?>


T Notes standards, and $show {s} / admin_email | atom_url | charset | $args / optioncount | exclude_admin | show_fullname | $args / type | limit | format | before | after | show_post_count
✽ Deprecated usability. comments_atom_url | comments_rss2_url | description | url |
html_type | language | name | pingback_url | rdf_url | rss2_url |
hide_empty | echo | feed | feed_image | style | html | echo

rss_url | siteurl | stylesheet_directory | stylesheet_url |


• [Link] template_directory | template_url | text_direction | version |
wpurl
wp_list_categories
wp_page_menu
Designed by Antonio Lupetti Displays a list of Categories as links. Displays a list of WordPress Pages as links, and affords the
• [Link] • [Link] opportunity to have Home added automatically to the list of
 <?php wp_list_categories( $args ); ?>
bloginfo_rss Pages displayed.

Displays information about your blog, mostly gathered from the $args / show_option_all | orderby | order | show_last_update  <?php wp_page_menu( $args ); ?>
information you supply in Users > Your Profile and General | style | show_count | hide_empty | use_desc_for_title |
Options from the WordPress Administration Panels child_of | feed | feed_type | feed_image | exclude | exclude_tree $args / sort_column | menu_class | include | echo |
★ INCLUDE TAGS | include | current_category | hierarchical | title_li | number | show_home | link_before | link_after
<?php bloginfo_rss( $show ); ?> echo | depth

get_header $show {s} / name | description | url | rdf_url | rss_url |


Includes the [Link] template file from your current theme's rss2_url | atom_url | comments_rss2_url | pingback_url |
directory. admin_email | charset | version | html_type | wpurl |
template_url | template_directory | stylesheet_url | wp_list_pages wp_dropdown_pages
<?php get_header( $name ); ?> stylesheet_directory Displays a list of WordPress Pages as links. Displays a list of pages in a select (i.e dropdown) box with no
submit button.
$name {s} <?php wp_list_pages( $args ); ?>
<?php wp_dropdown_pages( $args ); ?>
$args / depth | show_date | date_format | child_of | exclude |
get_sidebar include | title_li | echo | authors | sort_column | link_before | $args / depth | child_of | selected | echo | name |
Includes the [Link] template file from your current
get_bloginfo link_after | exclude_tree show_option_none | exclude | exclude_tree
theme's directory. The get_bloginfo() function returns information about your blog
which can then be used elsewhere in your PHP code.
<?php get_sidebar( $name ); ?>
<?php $bloginfo = get_bloginfo( $show ); ?>
$name {s} wp_list_bookmarks wp_dropdown_categories
$show {s} / name | description | url | home | siteurl |
Displays bookmarks found in the Administration > Links panel. Displays a list of categories in a select (i.e dropdown) box with
description | wpurl | rdf_url | rss_url | rss2_url | atom_url |
no submit button.
get_search_form comments_rss2_url | pingback_url | stylesheet_url |
stylesheet_directory | template_directory | template_url | <?php wp_list_bookmarks( $args ); ?>
Display search form using [Link] theme file. <?php wp_dropdown_categories( $args ); ?>
admin_email | charset | version | html_type
$args / orderby | order | limit | category | exclude_category |
<?php get_search_form(); ?> category_name | hide_invisible | show_updated | echo | $args / show_option_all | show_option_none | orderby | order
categorize | title_li | title_before | title_after | category_orderby | show_last_update | show_count | hide_empty | child_of |
| category_order | class | category_before | category_after exclude | echo | selected | hierarchical | name | class | depth
comments_template
Loads the comment template. For use in single post and page
displays. get_bloginfo_rss
RSS container for the bloginfo function. wp_list_comments wp_dropdown_users
<?php comments_template
( $file, $separate_comments ); ?> <?php get_bloginfo_rss( $show ) ?> {s} Displays all comments for a post or Page based on a variety of Create dropdown HTML content of users.
parameters including ones set in the administration area.
$file {s} / $separate_comments {b} $show {s} / name | description | url | rdf_url | rss_url | <?php wp_dropdown_users( $args ); ?>
rss2_url | atom_url | comments_rss2_url | pingback_url | <?php wp_list_comments( $args ); ?>
admin_email | charset | version | html_type | wpurl | $args / show_option_all | show_option_none | orderby | order
template_url | template_directory | stylesheet_url | $args / walker | max_depth | style | callback | end-callback | | include | exclude | multi | show | echo | selected | name | class
get_footer type | page | per_page | avatar_size | reverse_top_level |
stylesheet_directory
Includes the [Link] template file from your current theme's reverse_children
directory.

<?php get_footer( $name ); ?>

$name {s}
WORDPRESS VISUAL CHEAT SHEET ★ INCLUDE ★ BLOG INFO ★ LIST & DROPDOWN ★ LOGIN/LOGOUT ★ POST ★ COMMENT ★ CATEGORY ★ TAG ★ AUTHOR

★ DATE & TIME ★ EDIT LINK ★ TRACKBACK ★ PERMALINK ★ LINKS MANAGER ★ QUERY ★ TITLE

★ LOGIN / LOGOUT TAGS ★ POST TAGS

the_excerpt previous_posts_link
the_ID
is_user_logged_in Displays the excerpt of the current post with [...] at the end, This creates a link to the next posts. Yes, it says "previous posts,"
Displays the numeric ID of the current post. which is not a "read more" link.
This Conditional Tag checks if the current visitor is logged in. but it's named that just to confuse you. It assumes that your
This is a boolean function, meaning it returns either TRUE or posts are displaying in reverse chronological order (most recent
<?php the_ID(); ?>  <?php the_excerpt(); ?> 
FALSE. posts first) causing the previous page to show posts from later
in the timeline.
<?php if ( is_user_logged_in() ) { ... } ?>  the_excerpt_rss
the_title <?php previous_posts_link
Displays the excerpt of the current post formatted for RSS.
Displays or returns the title of the current post. ( $label , $max_pages ); ?>
 <?php the_excerpt_rss(); ?> 
wp_login_url <?php the_title( $before, $after, $display );?> 
$label {s} / $max_pages {int}
This Template Tag returns the URL that allows the user to log in wp_link_pages
$before {s} / $after {s} / $display {b}
to the site. Displays page-links for paginated posts (i.e. includes the <!-- next_image_link
nextpage--> Quicktag one or more times).
<?php echo wp_login_url( $redirect ); ?> This creates a link to the next image attached to the current
the_title_rss post.
<?php wp_link_pages( $args ); ?>
$redirect {s} Displays the title of the current post, formatted for RSS.
<?php next_image_link
$args / before | after | link_before | link_after |
<?php the_title_rss(); ?>  ( [string $size = 'thumbnail'], [string $text = 
next_or_number | nextpagelink | previouspagelink | pagelink |
wp_logout_url more_file | echo false] ); ?>

This Template Tag returns the URL that allows the user to log posts_nav_link
the_title_attribute
out to the site. previous_image_link
Displays or returns the title of the current post. It somewhat Displays links for next and previous pages. Useful for providing
<?php echo wp_logout_url( $redirect ); ?> duplicates the functionality of the_title(), but provides a "paged" navigation of index, category and archive pages. This creates a link to the previous image attached to the current
'clean'version of the title by stripping HTML tags and post.
$redirect {s} converting certain characters (including quotes) to their  <?php posts_nav_link
character entity equivalent; it also uses query-string style ('sep','prelabel','nxtlabel'); ?> <?php previous_image_link
parameters. This tag must be within The Loop. ( [string $size = 'thumbnail'], [string $text = 
wp_lostpassword_url ‘sep’ {s} / ‘prelabel’ {s} / ‘ nxtlabel’ {s} false] ); ?>
<?php the_title_attribute
This Template Tag returns the URL that allows the user to ( $before, $after, $display );?>  next_post_link
retrieve the lost password. sticky_class
$before {s} / $after {s} / $display {b} Used on single post permalink pages, this template tag displays
<?php echo wp_lostpassword_url( $redirect ); ?>  a link to the next post which exists in chronological order from Displays the sticky post class on a post if applicable.
the current post.
 <?php sticky_class(); ?> 
$redirect {s}
single_post_title <?php next_post_link
Displays or returns the title of the post when on a single post ('format', 'link', 'in_same_cat', 
page (permalink page). the_category
'excluded_categories'); ?>
Displays a link to the category or categories a post belongs to.
wp_logout <?php single_post_title( $prefix, $display ); ?> ‘format’ {s} / ‘ link’ {s} / ‘ in_same_cat’ {b} / ‘
excluded_categories’ {s} <?php the_category( $separator, $parents ); ?>
Log the current user out, by destroing the current user session.
$prefix {s} / $display {b}
<?php wp_logout(); ?>  next_posts_link $separator {s} / $parents {s}

This creates a link to the previous posts. Yes, it says "next posts,"
the_content but it's named that just to confuse you. It assumes that your the_category_rss
Displays the contents of the current post. posts are displaying in reverse chronological order (most recent
wp_loginout posts first) causing the next page to show posts from earlier in Displays the name of the category or categories a post belongs
the timeline. to in RSS format.
Displays a login link, or if a user is logged in, displays a logout <?php the_content
link. An optional, redirect argument can be used to redirect the ($more_link_text, $strip_teaser, $more_file);?> <?php next_posts_link( $label , $max_pages ); ?> <?php the_category_rss( $type ) ?> {s}
user upon login or logout.
$more_link_text {s} / $strip_teaser {b / $more_file {s} $label {s} / $max_pages {int}
<?php wp_loginout( $redirect ); ?> the_tags
This template tag displays a link to the tag or tags a post
$redirect {s} previous_post_link belongs to.
the_content_rss
Used on single post permalink pages, this template tag displays
Displays the content of the current post formatted for RSS. <?php the_tags( $before, $separator, $after );?>
a link to the previous post which exists in chronological order
wp_register from the current post.
<?php the_content_rss
This tag displays either the "Register" link to users that are not $before {s} / $separator {s} / $after {s}
logged in or the "Site Admin" link if a user is logged in. ('more_link_text', strip_teaser,'more_file', cut <?php previous_post_link
, encode_html); ?>  ('format', 'link', in_same_cat,
<?php wp_register( $before, $after ); ?> the_meta
‘excluded_categories'); ?> 
$more_link_text {s} / $strip_teaser {b} / $more_file {s} / Displays an unordered list of meta "key:value" pairs, or the
$before {s} / $after {s} $cut {int} / $encode_html {int} post-meta, for the current post.
‘format’ {s} / ‘ link’ {s} / ‘ in_same_cat’ {b} / ‘
excluded_categories’ {s}
<?php the_meta(); ?>
WORDPRESS VISUAL CHEAT SHEET ★ INCLUDE ★ BLOG INFO ★ LIST & DROPDOWN ★ LOGIN/LOGOUT ★ POST ★ COMMENT ★ CATEGORY ★ TAG ★ AUTHOR

★ DATE & TIME ★ EDIT LINK ★ TRACKBACK ★ PERMALINK ★ LINKS MANAGER ★ QUERY ★ TITLE

★ COMMENTS TAGS

comment_id_fields comment_type
wp_list_comments permalink_comments_rss
Displays the type of comment (regular comment, Trackback or
Displays all comments for a post or Page based on a variety of Generates two hidden inputs for the comment form to identify Displays the permalink to the post to which a comment belongs,
Pingback) a comment entry is.
parameters including ones set in the administration area. the comment_post_ID and comment_parent for threaded formatted for RSS.
comments.
<?php comment_type
<?php wp_list_comments( $args ); ?> <?php permalink_comments_rss(); ?> 
<?php comment_id_fields(); ?>  ('comment', 'trackback', 'pingback'); ?> 
$args / walker | max_depth | style | callback | end-callback |
‘ comment’ {s} / ‘ trackback’ {s} / ‘ pingback’ {s}
type | page | per_page | avatar_size | reverse_top_level | comment_reply_link
reverse_children comment_author
Displays a link that lets users post a comment in reply to a
Displays the comment author name; that is, the one supplied by comment_text specific comment.
comments_number the commenter. Displays the text of a comment.
<?php comment_reply_link(array_merge
Displays the total number of comments, Trackbacks, and <?php comment_author(); ?>   <?php comment_text(); ?> 
Pingbacks for a post. ( $args, array
('reply_text' => 'Reply', 'add_below' =>
<?php comments_number('zero', 'one', 'more');?>  comment_excerpt $add_below, 'depth' => $depth, 'max_depth' => 
comment_author_link Displays an excerpt (maximum of 20 words) of a comment's $args['max_depth']))); ?>
‘zero’ {s} / ‘ one’ {s} / ‘ more’ {s} text.
Displays the comment author's name linked to his/her URL, if
one was provided.
<?php comment_excerpt(); ?>  cancel_comment_reply_link
comments_link <?php comment_author_link(); ?> 
Displays a link which cancels the replying to a previous
Displays the URL to a post's comments. comment_date comment (a nested comment) and resets the comment form
back to the default state.
<?php comments_link(); ?>  Displays the date a comment was posted.
comment_author_email <?php cancel_comment_reply_link('text'); ?> 
<?php comment_date('d'); ?> 
Displays the comment author's email address, not linked.
‘ text’ {s}
✽ comments_rss_link
<?php comment_author_email(); ?>
This function has been deprecated, please use comment_time
post_comments_feed_link(). Displays the time a comment was posted. previous_comments_link
<?php comments_rss_link('text', 'file'); ?>  comment_author_email_link This creates a link to the previous comments page containing
<?php comment_time('d'); ?>
Displays the comment author's email address, as a mailto link. older comments.
‘text’ {s} / ‘file’ {s}
<?php comment_author_email_link comment_form_title <?php previous_comments_link( 'Label' ); ?> 
('linktext', 'before', 'after'); ?> Displays text based on comment reply status.
Label’ {s}
comments_popup_script ‘ linktext’ {s} / ‘ before’ {s} / ‘ after’ {s} <?php comment_form_title
Outputs the JavaScript code for a comments popup window. ('noreplytext', 'replytext', 'linktoparent' );?>
next_comments_link
<?php comments_popup_script(width, height);?>  comment_author_url ‘ noreplytext’ {s} / ‘ replytext’ {s} / ‘ linktoparent’ {s}
This creates a link to the next comments page containing newer
Displays the comment author's URL (usually their web site), not comments.
width {int} / height {int} linked.
comment_author_rss
<?php next_comments_link
<?php comment_author_url(); ?>  Displays the comment author's name formatted for RSS.
('Label', 'Max number of pages (default 0)');?> 
comments_popup_link <?php comment_author_rss(); ?> 
‘ Label’ {s} / ‘Max number of pages (default 0)’ {int}
Displays a link to the comments popup window if
comment_author_url_link
comments_popup_script() is used, otherwise it displays a
normal link to comments. Displays the comment author's URL (usually their web site), comment_text_rss
linked, if one was provided. paginate_comments_links
<?php comments_popup_link Displays the text of a comment formatted for RSS.
<?php comment_author_url_link Generate a new way to list the paged comments in the comment
('zero','one','more','CSSclass','none'); <?php comment_text_rss(); ?> template. Instead of using Previous or Next Comments links, it
?>  ('linktext', 'before', 'after'); ?> displays a full list of comment pages using numeric indexes.

‘zero’ {s} / ‘ one’ {s} / ‘ more’ {s} / ‘ CSSclass’ {s} / ‘ none’ {s} ‘ linktext’ {s} / ‘ before’ {s} / ‘ after’ {s} get_avatar <?php paginate_comments_links( $args ); ?> 
Retrieve the avatar for a user who provided a user ID or email
address. $args / base | format | total | current | echo | add_fragment
comment_ID
comment_author_IP <?php echo get_avatar
Displays the numeric ID of a comment.
Displays the comment author's IP address. ( $id_or_email, $size, $default, $alt ); ?> 
<?php comment_ID(); ?> 
<?php comment_author_IP(); ?>  $id_or_email {int/s/obj} / $size {int} / $default {s} / $alt
{s}
WORDPRESS VISUAL CHEAT SHEET ★ INCLUDE ★ BLOG INFO ★ LIST & DROPDOWN ★ LOGIN/LOGOUT ★ POST ★ COMMENT ★ CATEGORY ★ TAG ★ AUTHOR

★ DATE & TIME ★ EDIT LINK ★ TRACKBACK ★ PERMALINK ★ LINKS MANAGER ★ QUERY ★ TITLE

★ CATEGORY TAGS ★ TAG TAGS ★ AUTHOR TAGS ★ DATE AND TIME TAGS

the_category the_tags the_author the_time


This template tag displays a link to the tag or tags a post The author of a post can be displayed by using this Template
Displays a link to the category or categories a post belongs to. Displays the time of the current post.
belongs to. Tag.
<?php the_category( $separator, $parents ); ?>  <?php the_time('d'); ?> 
<?php the_tags( $before, $separator, $after );?> <?php the_author(); ?> 
$separator {s} / $parents {s}
$before {s} / $separator {s} / $after {s}
the_author_link the_date
the_category_rss This tag displays a link to the Website for the author of a post. isplays or returns the date of a post, or a set of posts if published
tag_description on the same day.
Displays the name of the category or categories a post belongs
First available with WordPress Version 2.8, this template tag <?php the_author_link(); ?> 
to in RSS format. <?php the_date
returns the description of a tag.
<?php the_category_rss( $type ) ?> ('format', 'before', 'after', echo); ?> 
<?php tag_description( $tagID ); ?> 
the_author_posts ‘ format’ {s} / ‘ before’ {s} / ‘ after’ {s} / echo {b}
$type {s}
$tagID / {s} Displays the total number of posts an author has published.

<?php the_author_posts(); ?> 
single_cat_title
the_date_xml
Displays or returns the category title for the current page. single_tag_title
Displays the date of the post in YYYY-MM-DD format (ex:
Displays or returns the tag title for the current page. 2004-09-24).
<?php single_cat_title( $prefix, $display );?>  the_author_posts_link
<?php single_tag_title( $prefix, $display );> Displays a link to all posts by an author. <?php the_date_xml(); ?> 
$prefix {s} / $display {s}
$prefix {s} / $display {s} <?php the_author_posts_link(); ?>

category_description the_modified_time
the_author_meta
Returns the description of a category. wp_tag_cloud This tag displays the time (and date) a post was last modified
The the_author_meta Template Tag displays the desired meta and is similar to the functionality of the_time(), which displays
Available with WordPress Version 2.3, this template tag
<?php echo category_description( $category );?>  data for a user. the time (and date) a post was created.
wp_tag_cloud displays a list of tags in what is called a 'tag
cloud', where the size of each tag is determined by how many
$category {s} <?php the_author_meta( $field, $userID ); ?> <?php the_modified_time('d'); ?>
times that particular tag has been assigned to posts.

<?php wp_tag_cloud( $args ); ?> $field / user_login | user_pass | user_nicename | user_email |


user_url | user_registered | user_activation_key | user_status |
$args / smallest | largest | unit | number | format | separator |
display_name | nickname | first_name | last_name | description the_modified_date
wp_dropdown_categories | jabber | aim | yim | user_level | user_firstname |
orderby | order | exclude | include | link | taxonomy | echo This tag displays the date (and time) a post was last modified.
Displays a list of categories in a select (i.e dropdown) box with user_lastname | user_description | rich_editing |
This tag works just like the_modified_time(), which also
no submit button. comment_shortcuts | admin_color | plugins_per_page |
displays the time/date a post was last modified.
plugins_last_view | ID
<?php wp_dropdown_categories( $args ); ?> wp_generate_tag_cloud $usreID / {int} <?php the_modified_date('d'); ?>
Returns an HTML string that makes a tag cloud.
$args / show_option_all | show_option_none | orderby | order
| show_last_update | show_count | hide_empty | child_of | <?php wp_tag_cloud( $tags, $args ); ?> wp_list_authors
exclude | echo | selected | hierarchical | name | class | depth
Displays a list of the blog's authors (users), and if the user has the_modified_author
$args / smallest | largest | unit | number | format | separator | authored any posts, the author name is displayed as a link to The author who last modified a post can be displayed by using
orderby | order | topic_count_text_callback | their posts. this Template Tag.
topic_count_scale_callback | filter
wp_list_categories <?php wp_list_authors( $args ); ?> <?php the_modified_author(); ?>

Displays a list of Categories as links. $args / optioncount | exclude_admin | show_fullname |


hide_empty | echo | feed | feed_image | style | html
<?php wp_dropdown_categories( $args ); ?> single_month_title
Displays or returns the month and year title for the current
$args / show_option_all | orderby | order | show_last_update |
page. This tag only works when the m or archive month
style | show_count | hide_empty | use_desc_for_title | child_of wp_dropdown_users
argument has been passed by WordPress to the current page
| feed | feed_type | feed_image | exclude | exclude_tree | include Create dropdown HTML content of users. (this occurs when viewing a monthly archive page).
| current_category | hierarchical | title_li | number | echo |
depth <?php wp_dropdown_users( $args ); ?> <?php single_month_title( $prefix, $display ) ?>

$args / show_option_all | show_option_none | orderby | $prefix {s} / $display {s}


order | include | exclude | multi | show | echo | selected | name |
class
WORDPRESS VISUAL CHEAT SHEET ★ INCLUDE ★ BLOG INFO ★ LIST & DROPDOWN ★ LOGIN/LOGOUT ★ POST ★ COMMENT ★ CATEGORY ★ TAG ★ AUTHOR

★ DATE & TIME ★ EDIT LINK ★ TRACKBACK ★ PERMALINK ★ LINKS MANAGER ★ QUERY ★ TITLE

★ EDIT LINK TAGS ★ PERMALINK TAGS ★ QUERY TAGS ★ TITLE

permalink_anchor
edit_post_link Outputs a permalink anchor identifier or id (<a id="....) for a get_posts wp_title
Displays a link to edit the current post, if a user is logged in and post. This is useful for linking to a particular post on a page This is a simple tag for creating multiple loops. Displays or returns the title of the page.
allowed to edit the post. displaying several posts, such as an archive page.
<?php get_posts('arguments'); ?>  <?php wp_title( $sep, $echo, $seplocation ); ?>
<?php edit_post_link <?php permalink_anchor('type'); ?> 
( $link, $before, $after, $post ); ?>  $numberposts {int} / $offset {int} / $category {int} / $sep {s} / $echo {s} / $seplocation {s}
‘type’ {s} $category_name {s} / $tag {s} /
$link {s} / $before {s} / $after {s} / $post {int}
get_permalink $orderby {s} (author | category | content | date | ID | single_post_title
menu_order | mime_type | modified | name | parent | password
Returns the permalink to a post for use in PHP. It does NOT | rand | status | title | type) Displays or returns the title of the post when on a single post
display the permalink and can be used outside of The Loop. page (permalink page).
edit_comment_link $order {s} / $include {s} / $exclude {s} / $meta_key {s} /
<?php $permalink = get_permalink(id); ?>  $meta_value {s} <?php single_post_title( $prefix, $display );?> 
Displays a link to edit the current comment, if the user is logged
in and allowed to edit the comment.
id {int} $post_type {s} (post | page | attachment | any ) $prefix {s} / $display {s}
<?php edit_comment_link
( $link, $before, $after ); ?>  $post_status {s} (publish | private | draft | future | inherit |
the_permalink blank) single_cat_title
$link {s} / $before {s} / $after {s} Displays the URL for the permalink to the post currently being
processed in The Loop. $post_parent {int} / $nopaging {b} Displays or returns the category title for the current page.

 <?php the_permalink(); ?>  <?php single_cat_title( $prefix, $display );?> 

edit_tag_link query_posts $prefix {s} / $display {s}


permalink_single_rss
Displays a link to edit the current tag, if the user is logged in Query_posts can be used to control which posts show up in The
and allowed to edit the tag. Displays the permalink for the current post, formatted for Loop. It accepts a variety of parameters in the same format as
syndication feeds such as RSS or Atom. used in your URL (e.g. p=4 to show only post of ID number 4).
<?php edit_tag_link single_tag_title
<?php permalink_single_rss('file'); ?>  <?php Displays or returns the tag title for the current page.
( $link, $before, $after, $tag ); ?> 
//The Query
$link {s} / $before {s} / $after {s} / $tag {int} ‘file’ {s} <?php single_tag_title( $prefix, $display );?> 
query_posts('arguments');
//The Loop $prefix {s} / $display {s}
if ( have_posts() ) : while ( have_posts() ) :
the_post();
edit_bookmark_link single_month_title
★ LINKS MANAGER TAGS ..
Displays a link to edit the current bookmark, if the user is This tag displays the date (and time) a post was last modified.
logged in and allowed to edit the bookmark. endwhile; else:
This tag works just like the_modified_time(), which also
.. displays the time/date a post was last modified.
wp_list_bookmarks
<?php edit_bookmark_link endif;
Displays bookmarks found in the Administration > Links panel. <?php single_month_title( $prefix, $display );?> 
( $link, $before, $after, $bookmark ); ?>  //Reset Query
<?php wp_list_bookmarks( $args ); ?>  wp_reset_query();
$link {s} / $before {s} / $after {s} / $bookmark {int} $prefix {s} / $display {s}
?>
$args / orderby | order | limit | category | exclude_category |
category_name | hide_invisible | show_updated | echo |
categorize | title_li | title_before | title_after | category_orderby T Arguments include: Category Parameters, Tag the_search_query
| category_order | class | category_before | category_after Parameters, Author Parameters, Post & Page Parameters, Sticky Displays the search query for the current request, if a search
Post Parameters, Time Parameters, Pagination Parameters, was made.
★ TRACKBACK TAGS Offset Parameter, Orderby Parameters, Order Parameters,
get_bookmarks Custom Field Parameters, Combining Parameters. <?php the_modified_time('d'); ?> 
This function returns an array of bookmarks found in the
trackback_url Administration > Blogroll > Manage Blogroll panel.
Displays or returns the trackback URL for the current post.
<?php get_bookmarks( $args ); ?> 
<?php trackback_url(display); ?> 
$args / orderby | order | limit | category | category_name |
hide_invisible | show_updated | include | exclude | search ★ REFERENCE AND CREDITS
display {b}
WORDPRESS VISUAL CHEAT SHEET: Design © 2009 Antonio Lupetti
get_bookmark
Retrieve Bookmark data based on bookmark link ID. • [Link] • [Link] • [Link]
trackback_rdf
Outputs the trackback RDF information for a post. <?php get_bookmark
THE k
<?php trackback_rdf(); ?> 
( $bookmark, $output, $filter ) ?> WORDPRESS WordPress is a state-of-the-art publishing platform with a focus on aesthetics, web standards, WORKING
and usability. WordPress is both free and priceless at the same time. • [Link]
$bookmark {int} / $output {s} / $filter {s}
BRAIN

You might also like