mrlive158
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: How to update screenshot for plugin?Oh, I’ve seen it was updated 🙂 . Thanks someone 😀
Forum: Plugins
In reply to: Writing a Custom Widget QuestionI agree, the best way is to look at some simple plugins and learn from it ^^
Forum: Your WordPress
In reply to: Live with the Value :)Thanks a lot. You really made me surprised by that hello in vietnamese:D
Actually, last time my blog was designed in two languages (Vn + Eng) with qtranslate plug-in, but everything messed up when updating from wordpress 2.6.3 to 2.7 so I removed it and came back to my mother tounge ^^
Forum: Themes and Templates
In reply to: how to display page content not post.. simple quest?I do not understand much your purpose.
If you want to specific the “About Us” page, just edit it in pages/edit or make a template for it.
If you change in that page.php, all the pages may show just one content.
Forum: Themes and Templates
In reply to: How Do I Make This 3-Column Tweek?Can u draw it? ^^
Forum: Themes and Templates
In reply to: My wordpress template doesn’t have previous and next …..?just insert those code below into your posts.php or single.php or index.php …, any where u want it to show 😉
<?php if (is_single(){?> <div class="navigation"> <div class="alignright"><?php next_post('%»', '', 'yes'); ?></div> <div class="alignleft"><?php previous_post('« %', '', 'yes'); ?></div> </div> <?php } else { ?> <div class="navigation"> <div class="alignleft"><?php next_posts_link('« Previous Posts') ?></div> <div class="alignright"><?php previous_posts_link('Next Posts »') ?></div> </div> <?php } ?>Forum: Themes and Templates
In reply to: changing the theme on my webpagejust depress and upload it into wp-content/themes then go to dashboard/appearance/theme and active it ^^
Forum: Themes and Templates
In reply to: contributor list and conditionalI think you should install some plugins can query the users’ information then modify it with some if statements, and “role=contributor” 🙂
Forum: Fixing WordPress
In reply to: Displaying Future/Scheduled Postsyou can try this one
http://wordpress.org/extend/plugins/upcoming-posts/