Recent Topics

1 May 21, 2006 13:11    

I'm currently trying to tweak the _main.php file under the custom skin so as to fit in with what I want the site to look like.

As I'm still in the process of learning PHP, I wonder what the parameters ('longdesc', 'htmlbody' etc.) in the below sample refer to and how I could change the content they're referring to:

<p><?php $Blog->disp( 'longdesc', 'htmlbody' ); ?></p>

I've been studying the DB entries and CSS files so far but I couldn't find any hints as where these parameters point towards.

Thanks for any help with this in advance!!

2 May 21, 2006 15:50

<p><?php $Blog->disp( 'longdesc', 'htmlbody' ); ?></p>

The p tags are just regular p tags. The php bit says "for this $Blog display the long description in the proper format for web display (html body)". So if you go into your back office (admin area) and edit your long description you'll see the change in the place where longdesc is displayed. Same with the short title and full title, but it all depends on what skin you're looking at it in.


Form is loading...