Wybe
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: pretty disappointed & upseti guess you should first backup your MySQL database too, becauase it´s a pain to lose months and months of blogging. i know. 🙁
Forum: Themes and Templates
In reply to: posts on 1 pageyou mean like list different posts in different rows?/collumns?
Forum: Requests and Feedback
In reply to: How to trim the title of a post?thanks!!!! omg man you are my hero.
i never knew that kind of thing was so easy in PHP. but then again, I dont know much of it 🙂 thanks thanks!and with my limited knowledge i have made it
$short_title = the_title("","",false);
$short_title_2 = substr($short_title,0,20);
echo $short_title_2;
if($short_title_2!=$short_title) { echo "..."; }it will append three dots when the title has been shortened. if not, the complete title is ofcourse displayed 🙂
Forum: Themes and Templates
In reply to: Automatic Excerpts???that is exactly what it already does when you don´t fill in a summary when posting. Also, it will end after x amount of *characters* instead of lines, i believe.
Forum: Fixing WordPress
In reply to: Export from WordPresswhat I just did is simply edit wp-rss2.php since I don´t use it anyway (lol too bad for people who do :P). Ofcourse I guess you could simply copy that file and then edit it. You can ofcourse change the way the output is made. Instead of some kind of XML you could make an output of for example normal HTML, it´s real easy. Then you can include it in any other PHP file, or simply link right to it.