bangladeshio
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How to create daily newspaper site with wordpress?Thanks but I know there are many news theme but I am finding a option that present on printed daily newspaper’s online edition. Like. When user visit the website only that day post will show in each category and in one page. And when they select the older day from calender archive they will only view that specific days post in each category.
Is there any solution for it?
Forum: Fixing WordPress
In reply to: Plugin and image upload problem after change to a new hostThanks RVoodoo. Its working after i change the upload directory location as yo directed! And I’m so thankful to you for this valuable super quick support.
Forum: Fixing WordPress
In reply to: Plugin and image upload problem after change to a new hostI think its not a permission problem because previous host upload directory was this >>
/home/bangladeshio/public_html/tech/wp-content/uploadsBut my new host upload directory is
/home/banglad1/public_html/tech/wp-content/uploads`
I think problem for this issue. Any solution please.
Forum: Themes and Templates
In reply to: How to add recent post thumbnail to my sidebar?Thanks MichaelH for your support. Its now working fine. After i change the code as you said it showing the recent posts with thubnails. Thanks again for your cordial help.
Forum: Themes and Templates
In reply to: How to add recent post thumbnail to my sidebar?In Zinmag Tribune theme this codes are use to call random posts with thumbnails. I think a small change will call the recent post here. Anyone can tell me what changes I need?
<div class="ranlist"> <?php $my_query = new WP_Query('showposts=5&orderby=rand'); ?> <?php while ($my_query->have_posts()) : $my_query->the_post();?> <div class="rblock"> <?php $screen = get_post_meta($post->ID,'screen', true); ?> <img src="<?php echo ($screen); ?>" width="60" height="40" alt="" /> <h3><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3> <div class="fmeta"> On <?php the_time('M-j-Y'); ?> </div> <div class="fmeta"> Reported by <?php the_author(); ?></div> </div> <?php endwhile; ?> </div>Forum: Themes and Templates
In reply to: How to add recent post thumbnail to my sidebar?Thanks for the your quick reply and supporting mind. But it only show a line “list of post”. Anything I have to change inside this code?