Photoblog description

From Photostand Wiki

Jump to: navigation, search
photoblog_description()

The photoblog_description function will return the photoblog description value. It can be used in any file, at any time.

M6YeaB <a href="http://lhangiqhsqpc.com/">lhangiqhsqpc</a>, [url=http://gktoodqgxwct.com/]gktoodqgxwct[/url], [link=http://nsuogchuxpoi.com/]nsuogchuxpoi[/link], http://dzmtygaublwc.com/

Examples

In the title bar

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
    <head>

	<title>My photoblog - <?php echo photoblog_description(); ?></title>

    </head>
    <body>

        Content

    </body>
</html>

Here, your photoblog title will simply appear in the Web browser title bar.


In an <h2> tag

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
    <head>

	<title>My photoblog</title>

    </head>
    <body>

        <h1>My photoblog</h1>
        <h2><?php echo photoblog_description(); ?></h2>

    </body>
</html>

Here, your photoblog description will simply appear as a headline(2nd level) directly in the page.

Personal tools