Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
<!-- <txp:article form="default" limit="20" /> -->
/section/article_title
to ?s=section&id=article_id
?level=album&id=album_id
or ?level=collection&id=collection_id
RewriteRule ^gallery/?$ /?s=gallery [QSA,L]
adding so that the revised htaccess file looks something like this<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteBase /relative/web/path/
#
RewriteRule ^gallery/?$ /?s=gallery [QSA,L]
#
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.+) - [PT,L]
#
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^(.*) index.php
#
RewriteCond %{HTTP:Authorization} !^$
RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization}]
</IfModule>
<?php require('plogger.php'); ?> at the start of the page
<?php the_plogger_head(); ?> in the header, and
<?php the_plogger_gallery(); ?> in the body.
<?php require('plogger.php'); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xml:lang="<?php echo $language; ?>" lang="<?php echo $language; ?>" xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php the_plogger_head(); ?>
</head>
<body>
<?php the_plogger_gallery(); ?>
</body>
</html>
<txp:php>
global $thumbnail_config;
global $config;
require("plogger.php");
</txp:php>
<txp:php>
the_plogger_head();
</txp:php>
<txp:php>
global $config;
global $thumbnail_config;
the_plogger_gallery();
</txp:php>
<txp:php>
global $thumbnail_config;
global $config;
require("plogger.php");
</txp:php>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xml:lang="<?php echo $language; ?>" lang="<?php echo $language; ?>" xmlns="http://www.w3.org/1999/xhtml">
<head>
<txp:php>
the_plogger_head();
</txp:php>
</head>
<body>
<txp:php>
global $config;
global $thumbnail_config;
the_plogger_gallery();
</txp:php>
</body>
</html>
1 to 2 of 2