soyuz
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Query posts by category OR pagei see. that’s why it’s only showing the Pages’ banner *sigh*
thanks for the tips, i will look into it.
Forum: Fixing WordPress
In reply to: Moving wordpress and can’t logged inworked like a charm ??
thanks a lot, guys!
Forum: Fixing WordPress
In reply to: Separate Excerpt and Content In Single.phpHi,
I also want to able to do that. So the content before the <!–more–> tag goes to the div on the left and the rest of article goes to the right div. so far no luck. as you said, it can be done by putting divs into the write dialog, but it’s messy, especially the <p>.
so if anybody can give a shed of light?
thanks ??
Forum: Everything else WordPress
In reply to: WordPress in Higher Educationhi moshu, thanks for the help. i will look into it. if i can’t solve that perharps i should stick to pMachine :).
Forum: Everything else WordPress
In reply to: WordPress in Higher Educationhi mamawrite,
I wonder how your campus website could migrate to WordPress? I mean how to convert all the posts and comments from pMachine 2.4 into WordPress? I had 850 entries and 198 comments so far and I need to migrate it into WordPress since I think WordPress is more reliable. I already use WordPress for my other blog.
Thanks for sharing.
Forum: Fixing WordPress
In reply to: Custom Archive Page with posts in categoriesthanks for the reply. i’ll look into it.
Forum: Fixing WordPress
In reply to: Custom Archive Page with posts in categoriesHi Stahn, I also need the archive exactly like you do. So when people visit my archive page, it will shows:
*December 2005
– my category
:: post titleSo perharps you may share how to do it with Costumizable Post Listing, because I already use it for Recent Comment and Previous Entries.
Thanks before ??
Forum: Themes and Templates
In reply to: Have a second single.php file for different single post look?hi, i’m new in WP. I’ve installed WP and works fine. My blog has two authors, and when a single page is requested, I want the loop to action: if the author is admin, use single1.php and if the author is Tedy, use single2.php. So I have similar problem except I want to sort it by author. I tried to change the above code into:
<?php
$post = $wp_query->post;
if ( is_author('Soyuz') ) {
include(TEMPLATEPATH . '/single2.php');
} else {
include(TEMPLATEPATH . '/single1.php');
}
?>
It didn’t work. It always shows the single1.php
Any suggestion?
Thanks.