我正在更改 WordPress 主题。该主题突出显示了您可以在管理面板中添加的条目。我可以输入一个标题,正常的描述,在底部我可以放一段特定的摘录。
问题是我必须在家里为这些对象设置标题、副标题和描述。
如果我使用 excerpts(),而 excerpts 的输入为空,则 excerpts 函数采用 X 个描述词。如果我在摘录输入中写了一个副标题,它只显示这些词,而不是条目的描述。
有没有办法在 WordPress 的条目中包含 3 件事,或者显示描述,如带有字数限制的摘录?
提前致谢。
编辑:
<div class="home-sectors-title">
<h3><?php echo the_title(); ?></h3>
</div>
<div class=""home-sectors-subtitle">
<?php echo excerpt('17'); ?>
</div>
<div class="home-sectors-description">
//description here
</div>
- 条目的标题(如普通帖子)
- 一个简短的字幕
- 条目的长文本(像普通帖子一样的html文本)