ah642403hy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: admin panel redirecting after hackhmm, maybe there is a redirect in your .htaccess file? just a guess.
Forum: Fixing WordPress
In reply to: Problems with ‘comment’have you got this or something similar in your template?
comments_popup_link('No Comments »', '1 Comment »', '% Comments »');Have you created a comments template and included it?
Forum: Themes and Templates
In reply to: Exclude Page Code FixI think that’s what you want:
<?php wp_list_pages ('sort_column=menu_order&depth=1&exclude=228&title_li='); ?>Forum: Installing WordPress
In reply to: WP will not allow me to upload a headerHave you made sure that the file permissions on the folder wp-content has been made writeable?
sorry, i should have checked back. another solution for multiple excludes would be by using the ‘or’
if ($cat->cat_ID != '1' || $cat->cat_ID != '2') {||= orForum: Fixing WordPress
In reply to: FF Unable to draw tables? or randomly does it right?You probably have something in your css that’s causing that.
try removingdisplay:blockfrom your theme css its on line 305.Removing unwanted cats
replace the the_category function with the code below
(1234 being the unwanted category.)<?php foreach((get_the_category()) as $cat) { if ($cat->cat_ID != "1324") { echo '| <a href="?cat=' . $cat->cat_ID . '">' . $cat->cat_name . '</a> '; } } ?>