<?php
echo ucfirst("name"); //Name
?>
Monthly Archives: April 2011
Convert the string into upper case – PHP
<?php
echo strtoupper("name"); // Name
?>
Convert the string into lower case – PHP
<?php
echo strtolower("FIRST NAME") //first name
?>
Number of comments of a post from post id – WordPress
<?php $postDetails = get_post($postID); echo $post_id_7->comment_count; ?>
Find out the number of comments of a post – WordPress
<?php comments_popup_link( 'No comments ','1 comment ','% comments ','comments-link ','Comments are off for this post '); ?>
Convert the site page to PDF
http://pdfcrowd.com/save-to-pdf/
WordPress page permalink from page id
<?php get_permalink($id); ?>
Query to fetch the recent comments – WordPress
<?php
global $wpdb;
$commentQuery = "SELECT * from $wpdb->comments WHERE comment_approved= '1'
ORDER BY comment_date DESC LIMIT 0 ,5";
$comments = $wpdb->get_results($commentQuery);
foreach ($comments as $comment) {
$url = '<a href="'. get_permalink($comment->comment_post_ID).
'#comment-'.$comment->comment_ID .'">';
?>
<li><?php echo $url; ?><?php echo $comment->comment_author; ?> On
<?php echo get_the_title($comment->comment_post_ID); ?></a></li>
<?php } ?>
WordPress function that shows archives
<?php
$args = array(
'type' => 'monthly',
'format' => 'html',
'show_post_count' => false,
'echo' => 1 );
echo wp_get_archives( $args );
?>
wordpress function that shows popular tags
<?php
$args = array(
'smallest' => 8,
'largest' => 22,
'unit' => 'pt',
'number' => 45,
'format' => 'flat',
'orderby' => 'name',
'order' => 'ASC',
'exclude' => null,
'include' => null,
'topic_count_text_callback' => default_topic_count_text,
'link' => 'view',
'taxonomy' => 'post_tag',
'echo' => true );
wp_tag_cloud( $args );
?>