PNParamasivan
Forum Replies Created
Viewing 8 replies - 1 through 8 (of 8 total)
-
Forum: Fixing WordPress
In reply to: Top white bar appearing when converted from Bootstrap to WordPressThank you so much 🙂
Forum: Fixing WordPress
In reply to: Top white bar appearing when converted from Bootstrap to WordPressNO error with revolution slider. Even before making revolution slider the top white bar appeared.
Forum: Fixing WordPress
In reply to: Post categories links<?php the_category(‘ ‘); ?>
I went through the plugin files and found out the following code and it works.
<?php wpbdp_the_directory_categories(); ?>Forum: Plugins
In reply to: [FancyBox for WordPress] [Plugin: FancyBox for WordPress] UsageThank You ! (even though for your late reply)
Forum: Plugins
In reply to: [Image Zoom] [Plugin: Image Zoom] UsageThanks. I used different script.
Please document the usage in plugin page.
Left side bar uses Recent posts and earlier I used query_posts for that also. After removing query_posts for Recent Posts, it works!
Forum: Fixing WordPress
In reply to: Admin posts in Home pageI solved it with echo as below:
<?php if (is_page()) { $cat=get_cat_ID($post->post_title); //use page title to get a category ID $posts = get_posts ("cat=$cat&showposts=3"); if ($posts) { foreach ($posts as $post): setup_postdata($post); ?> <div class="postlists"><div class="posttitle"> <a href="<?php echo get_permalink($post->ID); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php echo $post->post_title; ?></a> </div> <?php the_excerpt() ?></div> <?php endforeach; } } ?>
Viewing 8 replies - 1 through 8 (of 8 total)