コード例 #1
0
function tt_event_column_right($atts, $content)
{
    return '<div class="tt_event_column_right">' . tt_remove_wpautop($content) . '</div>';
}
コード例 #2
0
    ?>
</h2>
			<?php 
    $subtitle = get_post_meta(get_the_ID(), "timetable_subtitle", true);
    if ($subtitle != "") {
        ?>
				<h5><?php 
        echo $subtitle;
        ?>
</h5>
			<?php 
    }
    if (have_posts()) {
        while (have_posts()) {
            the_post();
            echo tt_remove_wpautop(get_the_content());
        }
    }
    ?>
		</div>
		<?php 
    if (is_active_sidebar('sidebar-event')) {
        ?>
		<div class="tt_event_page_right">
			<?php 
        dynamic_sidebar('sidebar-event');
        ?>
		</div>
		<?php 
    }
    ?>