mirror of
https://gh.wpcy.net/https://github.com/buddypress/buddypress.git
synced 2026-05-31 05:04:29 +08:00
git-svn-id: https://buddypress.svn.wordpress.org/trunk@1453 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
22 lines
No EOL
528 B
PHP
22 lines
No EOL
528 B
PHP
<?php
|
|
/*
|
|
* /plugin-template.php
|
|
* BuddyPress plugins can use this file to display extra content that doesn't need
|
|
* seperate template files. It is basically a way for plugins to get content into your theme
|
|
* without users having to modify the theme to support them.
|
|
*/
|
|
?>
|
|
|
|
<?php get_header() ?>
|
|
|
|
<div class="content-header">
|
|
<?php do_action('bp_template_content_header') ?>
|
|
</div>
|
|
|
|
<div id="main">
|
|
<h2><?php do_action('bp_template_title') ?></h2>
|
|
|
|
<?php do_action('bp_template_content') ?>
|
|
</div>
|
|
|
|
<?php get_footer() ?>
|