LATEST NEWS and TIPS on WordpressBoys
![]() |
Posted on September 29, 2009 by admin
Here is how you can display a list of the authors (users) associated with your Wordpress Blog, and if the user has authored any posts, the author name is displayed as a link to their posts. Optionally this tag displays each author’s post count and RSS feed link.
<?php wp_list_authors( $args ); ?>
Tags: Wordpress Customization , Wordpress Functions
|
![]() |
Posted on September 29, 2009 by admin
In the Wordpress Templates we generally see the “Read More” links at the end of the small excerpt text. Wanna change the text to something else? Then please follow the steps.
1. Navigate to Appearance –> Editor in your Wordpress Dashboard
2. Open your “index.php” or file and find this line:
<?php the_content(__(‘Read more’));?>
3. replace it with this [...]
Tags: Wordpress Customization , Wordpress Dashboard , Wordpress Functions , Wordpress TIPS
|
![]() |
Posted on September 29, 2009 by admin
In Wordpress “the_Excerpt()” displays the excerpt filed value of the current post with [...] at the end, which is not a “read more” link. If you do not provide an explicit excerpt to a post (in the post editor’s optional excerpt field), it will display a teaser which refers to the first 55 words of [...]
Tags: Wordpress Customization , Wordpress Functions , Wordpress TIPS
|