Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

  1.  
    Hi,

    I use plogger 3 beta, and I think it would be great if someone could make so that the <title> tag changes, depeding on what collection I'm browsing on.

    So, anyone? :)
    • CommentAuthorjammindice
    • CommentTimeAug 25th 2007
     
    Not sure what you mean the title is dynamic... but you could make th changes to the function below in plog-functions.php to make it however you would like it to be.

    function plogger_head() {
    global $config;

    $title = generate_title($GLOBALS['plogger_level'], $GLOBALS['plogger_id']);

    if ($config["embedded"] == 0) {
    print "<title>" . SmartStripSlashes($config["gallery_name"]) . ": $title </title>\n";
    }

    print generate_slideshow_js($GLOBALS["plogger_id"], "album");
    print "\n";

    // Embed URL to RSS feed for proper level.
    print '<link rel="alternate" type="application/rss+xml" title="RSS Feed" href="'.plogger_rss_link().'" />' . "\n";
    print '<meta http-equiv="Content-Type" content="text/html;charset=' . $config['charset'] . '"/>' . "\n";
    }
    • CommentAuthordime
    • CommentTimeAug 25th 2007
     
    I don't understand completely your question, but check this out.