我已经创建了一个网站,并希望在其上创建一个“新闻”部分。 但是我将与一个不懂html的朋友一起使用该网站,我认为使用WordPress之类的内容管理系统编辑新闻栏可能会更容易。 因此,我想仅将“新闻”部分(如博客条目)集成WordPress,以便我的朋友可以在WordPress的该部分中编辑或添加新帖子。 我是WordPress的初学者,所以我想从您那里获得详细的帮助。
谢谢。
答案 0 :(得分:0)
Wordpress是开发博客的良机,但随着时间的推移,它发展了很多。因此,可以,您可以将新闻添加为类别,之后可以将帖子“附加”到该类别,并仅在页面上显示该类别的帖子。花一些时间阅读有关Wordpress中的类别和标签的信息。为博客选择Wordpress是一个不错的选择!
答案 1 :(得分:0)
它必须是wordpress吗,您知道任何PHP吗?
因为我最近偶然发现bludit->一个非常易于使用的平面文件cms,可能对您的情况非常适合。
我认为Bludit易于理解,非常容易实现到现有的html网站中。 (与WP相比)
编辑:
以下是bludit博客文章列表的示例片段:
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10 mx-auto">
<!-- Content -->
<!-- loop through the pages and create a post-preview div with a link to the blog post detail page -->
<?php foreach ($content as $page): ?>
<div class="post-preview">
<a href="<?php echo $page->permalink() ?>">
<h2 class="post-title"><?php echo $page->title() ?></h2>
<h3 class="post-subtitle"><?php echo $page->description() ?></h3>
</a>
<p class="post-meta"><?php echo $language->get('Posted by').' '.$page->user('username').' - '.$page->date() ?></p>
</div>
<hr>
<?php endforeach ?>
</div>
</div>
</div>
下面是博客文章详细信息页面的示例片段:
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10 mx-auto">
<!-- display the content of the post -->
<?php echo $page->content() ?>
</div>
</div>
</div>