Published in: PHP
Use {SITE_INFO} in your template to print actual category ID / article ID and processing time
<?php // Siteinfo in footer $siteinfo = ""; $siteinfo .= "Kategorie ID: ".$content["cat_id"]." | "; $siteinfo .= "Artikel ID: ".$content["article_id"]." | "; $siteinfo .= (function_exists('memory_get_usage'))?"Memory ".round(memory_get_usage()/1024/1024, 2)."MB | ":" | "; $siteinfo = "<div style=\"color:#fff;margin-top:0.45em;text-align:center;\">".$siteinfo."</div>"; } ?>
You need to login to post a comment.
