如何使内容可编辑Wordpress

时间:2014-07-13 10:45:40

标签: wordpress

我正在使用wordpress网站,我想让所有页面内容可以从后端编辑,即管理面板,每个页面网站都有很多部分,因此不容易处理页面内容区域。 什么是使所有内容都可编辑的最简单和最好的方式。

1 个答案:

答案 0 :(得分:0)

在管理面板中添加您需要在首页显示的内容的页面。然后使用page ID,您可以获取模板页面中的内容。

<?php 
$id=47; 
$post = get_post($id); 
$content = apply_filters('the_content', $post->post_content); 
echo $content;  
?>