<?php get_header(); ?>
<div id=”econtent”>
<?php if(have_posts()):
while(have_posts()): the_post(); ?>
<div id=”sinfobox”>
<?php if (function_exists(‘get_cat_icon’)) get_cat_icon(); ?>
<h3><?php the_title(); ?></h3>
<div id=”stext”>
<?php echo nl2br(get_post_meta($post->ID,”本文”,true)); ?>
<!– /#stext –></div>
<div class=”item”>
<table class=”postmeta”>
<?php
$metakeys = array(‘日時’, ‘会場’, ‘講師’, ‘対象’, ‘定員’, ‘参加者’, ‘締切日’, ‘参加費’, ‘主催’, ‘企画・運営’, ‘共催’, ‘協賛’, ‘後援’, ‘協力’, ‘その他’, ‘お申込み・お問合せ’ ); // 表示したいカスタムフィールドのキーを配列に格納
foreach( $metakeys as $key ) :
$value = get_post_meta( $post->ID, $key, true );
$value = esc_html( $value ); // WP2.8+
// $value = wp_specialchars( $value );
$value = nl2br($value);
if ( !empty( $value ) ) :
?>
<tr>
<th scope=”row”><?php echo $key; ?></th>
<td><?php echo $value; ?></td>
</tr>
<?php
endif;
endforeach;
?>
</table>
<table class=”cautions”>
<tr>
<td>
※事務連絡以外には使用いたしません。
</td>
</tr>
</table>
<?php
$files = get_post_meta($post->ID, PDF, false);
foreach($files as $file):
$file = wp_get_attachment_url($file);
if ( !empty( $file ) ) :
?>
<table class=”pdf”>
<tr>
<td>” target=”_blank”><?php the_title(); ?></td>
</tr>
<tr>
<td>(PDFファイルをご覧いただく為には、Adobe(R)ReaderTMが必要です。下記アイコンをクリックしてダウンロードいただけます。)
</td>
</tr>
<tr>
<td><img src=”<?php bloginfo(‘template_url’); ?>/images/bnn_pdf.gif” />
</td>
</tr>
</table>
<?php
endif;
endforeach;
?>
<!– /#item –></div>
<div class=”simg”>
<?php
$attach_id = get_post_meta($post->ID,”画像1″,true);
foreach($attach_id as $file):
list( $url, $w, $h) = wp_get_attachment_image_src( $attach_id , ‘full’ );
$h = intval(200 * ( $h / $w ));
$alt = get_post_meta($attach_id , ‘_wp_attachment_image_alt’, true);
$url = wp_get_attachment_url($file);
if ( !empty( $file ) ) :
?>
<img class=”zzzz” src=”<?php echo $url; ?>” alt=”<?php echo $alt; ?>” width=”200px” height=”146px” />
<?php
endif;
endforeach;
?>
<?php
$attach_id = get_post_meta($post->ID,”画像2″,true);
foreach($attach_id as $file):
list( $url, $w, $h) = wp_get_attachment_image_src( $attach_id , ‘full’ );
$h = intval(200 * ( $h / $w ));
$alt = get_post_meta($attach_id , ‘_wp_attachment_image_alt’, true);
$url = wp_get_attachment_url($file);
if ( !empty( $file ) ) :
?>
<img class=”zzzz” src=”<?php echo $url; ?>” alt=”<?php echo $alt; ?>” width=”200px” height=”146px” />
<?php
endif;
endforeach;
?>
<!– /#simg –></div>
<div style=”clear:both;”></div>
<!– /#sinfobox –></div>
<?php endwhile; endif; ?>
<!– /#econtent –></div>
<?php get_footer(); ?>