大家好,
我尝试创建一个快捷码,打印知识共享徽标和一些文本,一切正常,只是我把快捷码放在了帖子的末尾,但快捷码放在了帖子内容的顶部,
我使用下面的代码:
<?php // Creative Commons License Shortcode
function creativecommons( $atts, $content = null )
{
extract( shortcode_atts( array(
\'type\' => \'\',
\'code\' => \'\',
), $atts ) );
{ ?>
<div class="license">
<div class="cc-img">
<img src="<?php bloginfo(\'template_directory\'); ?>/images/cc.png" width="32" height="32" alt="Creative Commons License" />
</div>
<div class="cc-content">
<h4><?php echo $type ?></h4>
<small><?php echo $code ?></small>
</div>
</div><!-- end of license -->
<div class="clear"></div><!-- clear div -->
<?php }
return;
}
add_shortcode(\'cc1\', \'creativecommons\');
?>
我在这里遗漏了一些东西,或者其他一些与我的问题有关的东西<非常感谢,菲利普