Re: call register form via php tag
just a another one quick…
i’d like to create a sidebar.php , and i’d like to add <?php bb_get_sidebar(); ?>
to a particular page (so not a global call to all pages).
my experiment was:
<script>
function bb_get_sidebar() {
bb_load_template( 'sidebar.php' );
}
</script>
in header.php (inside head).
2. <?php bb_get_sidebar(); ?>
(inside body).
but no success, what am I doing wrong?