我希望每次在编辑器中使用更多标签时显示内容。 我找到了一个解决方案,可以使用此代码为第一个更多标签执行此操作:
<?php if ($pos=strpos($post->post_content, '<!--more-->')): ?>
<?php $more = 0; the_content(''); ?>
<div>CONTENT HERE</div>
<?php $more = 1; the_content('', true); ?>
<?php else : the_content(); endif; ?>
有没有办法为内容中的每个更多标签执行此操作?
答案 0 :(得分:1)
您对此有何看法?
<?php
$contenido="Lorem ipsum dolor sit amet, his id porro lucilius theophrastus. -mas- Eum labitur voluptaria te, magna veniam civibus -mas- ad mei. An per ornatus officiis quaerendum, sonet timeam ad eam, nec an vidisse discere intellegam. Iusto habemus reprimique an nec.";
$contenidoExploded=explode('-mas-',$contenido);
if(count($contenidoExploded)>1){
foreach($contenidoExploded as $p){
echo $p.'</p>';
}
}else{
echo $contenido;
}
它对你有用吗?