カスタムフィールドを使った特定記事のスタイルシート定義

<?php
$OptionCSS = '';
if (have_posts()) : while (have_posts()) : the_post();
    if ($Tmp = get_post_meta($post->ID, 'CSS', true)) $OptionCSS .= $Tmp . "\n";
endwhile; endif;

if ($OptionCSS) {
    $EchoOptionCss = <<<EOM
<style type="text/css">
{$OptionCSS}
</style>\n
EOM;
    echo $EchoOptionCss;
}
?>


キー
CSS table.ExampleTbl {     margin: 1em 20px 1em 180px;     border-collapse: collapse; } table.ExampleTbl th , table.ExampleTbl td {     padding: 2px 6px;     border: 1px solid #bcc; } table.ExampleTbl th {     color: #366;     background: #def; }

http://weblogs.tail-lagoon.com/WebPC/2008/06/13/30/