函数将内容包装在div中

时间:2013-06-27 作者:Poisontonomes

每当我开发一个新主题时,我总是the_content 在一个div里,就像这样;

<div class="entry-content">
    <?php the_content();?>
</div>
是否有办法简化此过程并自动包装the_content 在div中通过函数进行编码,这样我就不必总是手动编码,更重要的是,如果我的客户想要锻炼他们的编码肌肉,如果他们忘记了,就不会有问题。。。

1 个回复
SO网友:Ravinder Kumar

你可以钩住the_content 滤器

将下面的代码粘贴到functions.php :

<?php
 add_action(\'the_content\',\'ravs_content_div\');
 function ravs_content_div( $content ){
  return \'<div class="entry-content">\'.$content.\'</div>\';
 }
?>
粘贴此代码后functions.php, the_content() 在包装内容后打印帖子/页面内容div 带类entry-content.

结束