我是wordpress的新手,我正在使用wordpress创建一个网站。
您可以在此处查看模拟页面http://www.site2preview.com/veejata/ver1/index.html
我已将index.php更改为
<?php
get_header();
//get_template_part( 'loop', 'index' );
?>
<div class="flt_left">
//dummy welcome text ..
</div>
<div class="flt_left">
//dummy latest post..
</div>
<?php get_sidebar(); ?>
<?php get_advt(); ?>
<?php get_footer(); ?>
现在我想知道如何创建自定义页面或块,以及如何将它们包含在index.page中。
此外,我希望用户应该能够从管理面板编辑虚拟欢迎文本..
一般来说,我希望 how to split the contents in the wordpress
和 how to make them editable by admin
和 how to include them in the pages
... < / p>
答案 0 :(得分:1)
这是你在简单的index.php文件中应该拥有的(来自wordpress经典主题):
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_date('','<h2>','</h2>'); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h3 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark">
<?php the_title(); ?></a></h3>
<div class="meta"><?php _e("Filed under:"); ?> <?php the_category(',') ?>
— <?php the_tags(__('Tags: '), ', ', ' — '); ?>
<?php the_author() ?> @
<?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div>
<div class="storycontent">
<?php the_content(__('(more...)')); ?>
</div>
<div class="feedback">
<?php wp_link_pages(); ?>
<?php comments_popup_link(__('Comments (0)'),
__('Comments (1)'), __('Comments (%)')); ?>
</div>
</div>
<?php comments_template(); // Get wp-comments.php template ?>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>