个人网站上有"news and activities"的wordpress插件吗?查看详细信息

Is there a wordpress plugin for "news and activities" on personal website. See details

我正在尝试为我的个人网站创建一个 'news and activities' 框(如图 here 所示)。你能给我指出一些相同的插件吗?谢谢

好的,我不会为此使用插件。

只需将此写入文本编辑器即可

HTML

<div class="scroll-box">

<p>Your excerpt goes in here!</p>

</div>

在你的 css

.scroll-box {
    background: #f4f4f4;
    border: 2px solid rgba(0, 0, 0, 0.1);
    height: 400px; /* maximum height of the box, feel free to change this! */
    padding: 15px;
    overflow-y: scroll;
}

如果你愿意,你可以制作自己的短代码,这样你就不必将文本包装在 html <div class="scroll-box>