예제 #1
0
<?php

/**
 * Template Name: Activity Stream
 * Template for the Activity Stream page
**/
require_once ABSPATH . WPINC . '/rss-functions.php';
$activities = new SourceAdmin();
$activities->archive_streams();
get_header();
?>
			<!-- content -->
			<div id="content">
					
				<!-- page -->
				<div class="page">
					
					<?php 
if (have_posts()) {
    ?>
	
					<?php 
    while (have_posts()) {
        the_post();
        ?>
						
					<h1><?php 
        the_title();
        ?>
</h1>
					<?php 
예제 #2
0
<?php

/**
 * Template Name: Activity Stream
 * Template for the Activity Stream page
**/
require_once ABSPATH . WPINC . '/rss-functions.php';
SourceAdmin::archive_streams();
get_header();
?>
			<!-- content -->
			<div id="content">
					
				<!-- page -->
				<div class="page">
					
					<?php 
if (have_posts()) {
    ?>
	
					<?php 
    while (have_posts()) {
        the_post();
        ?>
						
					<h1><?php 
        the_title();
        ?>
</h1>
					<?php 
        the_content();