clickit
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Upgrade to 3.0 problem: can’t edit pages from DashboardDeleting the ‘Google Analytics Dashboard’ plugin by Carson McDonald eventually resolved this issue for me.
Forum: Fixing WordPress
In reply to: Sort posts in page template by category, then titlevtxyzzy,
You may just have made my week. This has worked perfectly! Just a few minor modifications on my side to get pagination back up and running.
Many thanks.
Forum: Themes and Templates
In reply to: Missing $comment_post_ID on template pagepreaxz, you are a star my friend.
I was experiencing the white screen of death with comments on a template page after submitting the form. You’re solution seems to work just fine.Forum: Fixing WordPress
In reply to: Can’t access WP-Admin – blank white screenHave you modified your functions.php file at all? I had the same problem with the ‘dreaded white screen’ when creating new posts and after logging out. My problem lay with the following code which limits the number of words displayed in excerpts.
<?php function string_limit_words($string, $word_limit) { $words = explode(' ', $string, ($word_limit + 1)); if(count($words) > $word_limit) array_pop($words); return implode(' ', $words); } ?>If anyone has used the same code and is encountering a white screen, removing it from functions.php should get your admin back.
Any suggestions welcomed for incorporating this code safely or other methods of limiting excerpts.