Topic: theme_pre_content

Inside index.template.php you have this......

......
<?php Action::run('theme_pre_content'); ?>
            </div>
            <div>
                <?php echo Site::content(); ?>
            </div>
            <div>
                <?php Action::run('theme_post_content'); ?>
.......

But what does theme_pre_content and theme_post_content do? Right now they are empty doing nothing...ideas?

Re: theme_pre_content

I hope this is helpful but I guess you can put anything in there that you want.
(Once again Matt Bastin states the obvious!)

Seriously though content can be added here either from html or PHP

Re: theme_pre_content

>But what does theme_pre_content and theme_post_content do?

Hooks for plugins. To do some actions before and after content render.

Monstra Loves You! Give some love back!