Coda Clips

Get day link

<?php get_day_link('year', 'month', 'day'); ?>

Added to by Andy Lobban

Install Clip


Next posts link

<?php next_posts_link(); ?>

Added to by Andy Lobban

Install Clip


Generate a HTML string of the tags associated with the current post

<?php
echo get_the_tag_list('<p>Tags: ',', ','</p>');
?>

Added to by Andy Lobban

Install Clip


Return an array of objects, one object for each tag assigned to the post

<?php
$posttags = get_the_tags();
if ($posttags) {
foreach($posttags as $tag) {
echo $tag->name . ' '; 
}
}
?>

Added to by Andy Lobban

Install Clip


Display tag cloud

<?php wp_tag_cloud(''); ?>

Added to by Andy Lobban

Install Clip


Sponsored Links: