Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • i guess you should first backup your MySQL database too, becauase it´s a pain to lose months and months of blogging. i know. 🙁

    you mean like list different posts in different rows?/collumns?

    Thread Starter Wybe

    (@wybe)

    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 🙂

    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.

    what 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.

Viewing 5 replies - 1 through 5 (of 5 total)