tgwpqd
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: second blog under existing blogBut I want to create a second blog
Forum: Plugins
In reply to: Feed Wrangler plugin: feed add to My Yahoo not workinghelp
Forum: Plugins
In reply to: Feed Wrangler plugin: feed add to My Yahoo not workingAny help?
Forum: Themes and Templates
In reply to: list links in same category (something wrong)Thanks, but I find one better Related Posts by Category
Forum: Themes and Templates
In reply to: Trying to align an image correctly.if you want it clickable, you should do that as you logo, e.g.
<a href="....."><img src="http://i44.tinypic.com/s4m42w.png"></a>then in style.css, write something such as:
{float: left;}Forum: Themes and Templates
In reply to: list links in same category (something wrong)I read those links you gave me before. The point is the code under:
category_name=<?php get_the_category(', ') ?>
If I delete this code, I will get links in order by posts. After added above code, I will get links of the first category form Categories < Posts.
I want to show the links form category as
<?php the_category(', ') ?>Forum: Themes and Templates
In reply to: list links in same category (something wrong)It is not working, and the wpdb is not really related cuz I am not directly looking that form database. The category in my database do not have id. The category (such as news, resources….) is form post by author
Forum: Themes and Templates
In reply to: list links in same category (something wrong)Try it under where? Can you be more detailed?
Forum: Themes and Templates
In reply to: tag cloudgot that
thanksForum: Themes and Templates
In reply to: tag cloudmaybe I was use the wrong Loop, can you write a example Loop for the tag to me to have look?
Forum: Themes and Templates
In reply to: tag cloudI did try that before, but get nothing
Forum: Themes and Templates
In reply to: tag cloudThe post have tags, and I try:
<?php
if(get_the_tag_list()) {
get_the_tag_list(”); }
?>
however, still nothingcan anyone help?
Forum: Themes and Templates
In reply to: tag cloudI try
<?php
global $tag;
$posttags = get_the_tags();
if ($posttags) {
foreach($posttags as $tag) {
echo $tag->name . ‘ ‘; }
}
?>but still nothing
Forum: Plugins
In reply to: subscribe via RSS feed and emailI find the feed wrangler plugin for the RSS feed, but how abuot the email?