kishorebudha
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Help: Exclude category messing Looprodsherwin: Thanks very much for pointing that out. I did not bother to test it out thoroughly.
This worked:
<?php if (is_home()) { $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=-88&paged=$paged"); } ?>Forum: Fixing WordPress
In reply to: Help: Exclude category messing LoopOK. Resolved the issue by placing query posts in index.php
<?php if (is_home()) { query_posts("cat=-88"); } ?>Forum: Fixing WordPress
In reply to: Help: Exclude category messing LoopSee it in action here. The 9 posts before the one here are from the excluded category. The previous posts page similarly deducts the excluded category posts from the page view.
Forum: Themes and Templates
In reply to: Blank Archives PageOK. Silly me. I hadn’t defined the page template in the Advanced Options of the page!!!
Forum: Themes and Templates
In reply to: Blank Archives PageHi. Checked your blog. Looks like you solved your archive page issue. How did you do it. I am facing the same problem! Many thanks
Forum: Plugins
In reply to: nextgen-gallery document.getelementbyid is null or not an objectThe problem has been identified — the plugin ShiftThis (http://wordpress.org/extend/plugins/shiftthis-image-captions/#post-1508) clashes with this plugin. Disabling ShiftThis got NextGen to work again.
Forum: Fixing WordPress
In reply to: WordPress 2.5 Editing Dialog Boxes in FirefoxClearing Firefox Cache solved the problem! THanks!
Forum: Themes and Templates
In reply to: display text after tag wp_list_categoryThe WordPress Codex here gives the following example, `<?php
wp_list_categories(‘include=5,9,23&title_li=<h2>’ . __(‘Poetry’) . ‘</h2>’ ); ?>`I modified the title_li tag to reflect my own custom message and it does not show.