我正在使用wordpress主题。默认主页是最新帖子。在我的主题中,它是home.php,它是默认主页的内容。现在我想要一个静态主页和博客页面。我创建了一个名为“Home”的新页面并将其设置为主页。因此,以前的默认主页内容不会出现在我的新主页中。 我的问题是如何将这些默认主页内容添加到这个新的主页?我不想更改page.php模板,因为它会更改所有页面。我想更改此特定的“主页”页面,并将其设置为具有先前默认主页内容的主页。 有人能帮帮我吗?
这是默认主页代码
<?php get_header(); ?>
<?php if ( get_option('modest_quote') == 'on' ) { ?>
<div id="quote">
<p id="quote-1"><span class="tagline-quote">“</span><?php echo get_option('modest_quote_one'); ?><span class="tagline-quote">”</span></p>
<p id="quote-2"><?php echo get_option('modest_quote_two'); ?></p>
</div> <!-- end #quote -->
<?php } ?>
<?php if ( get_option('modest_featured') == 'on' ) get_template_part('includes/featured'); ?>
<?php if ( get_option('modest_blog_style') == 'false' ){ ?>
<div id="blurbs" class="clearfix">
<?php
$blurbs_number = get_option('modest_use_third_page') == 'on' ? 3 : 2;
if ( get_option('modest_use_third_page') == 'on' ) $blurbs_number = 3;
?>
<?php for ($i=1; $i <= $blurbs_number; $i++) { ?>
<?php query_posts('page_id=' . get_pageId(html_entity_decode(get_option('modest_home_page_'.$i)))); while (have_posts()) : the_post(); ?>
<?php
global $more; $more = 0;
?>
<div class="blurb<?php if ( $i == 3 ) echo ' last'; ?>">
<h3 class="title"><?php the_title(); ?></h3>
<?php the_content(''); ?>
</div> <!-- end .blurb -->
<?php endwhile; wp_reset_query(); ?>
<?php } ?>
<?php if ( $blurbs_number == 2 ) { ?>
<div class="blurb last">
<h3 class="title"><?php esc_html_e('Examples of Our Work','Modest'); ?></h3>
<?php query_posts("showposts=".get_option('modest_work_number')."&cat=".get_cat_ID(get_option('modest_work_cat')));
if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php
$width = 56;
$height = 56;
$titletext = get_the_title();
$thumbnail = get_thumbnail($width,$height,'item-image',$titletext,$titletext,true,'Work');
$thumb = $thumbnail["thumb"];
$fancybox_title = get_post_meta($post->ID,'Customtitle',true) ? get_post_meta($post->ID,'Customtitle',true) : get_the_title(); ?>
<div class="thumb">
<a rel="gallery" title="<?php echo esc_attr($fancybox_title); ?>" href="<?php echo esc_attr($thumbnail['fullpath']); ?>" class="fancybox">
<?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext, $width, $height, 'item-image'); ?>
<span class="overlay"></span>
<span class="zoom-icon"></span>
</a>
</div> <!-- end .thumb -->
<?php
endwhile; endif;
wp_reset_query(); ?>
</div> <!-- end .blurb -->
<?php } ?>
</div> <!-- end #blurbs -->
<?php } else { ?>
<div id="left-area">
<?php get_template_part('includes/entry','home'); ?>
</div> <!-- end #left-area -->
<?php get_sidebar(); ?>
<?php } ?>
答案 0 :(得分:0)
Plz尝试它会给出你的答案
Plz从管理面板制作主页模板和该页面的模板,并将plz放在您创建新模板页面顶部的代码下面
/*
Template Name: Home Page
The template for displaying Home
*/
在您在管理面板
中创建的wordpress页面中选择主页模板答案 1 :(得分:0)
您可以为单独的主页设计创建主页模板。 请参阅以下链接,了解如何在WordPress中制作模板。
然后在管理面板的主页编辑模式中选择模板。
有助于获取内容,精选图片以及所有可以使用下列列出的功能的函数。
the_content();
get_the_post_thumbnail();
get_permalink();
get_excerpt()
等。 请html在模板中保持相同,只需将php代码放在您想要图像内容的位置等。
答案 2 :(得分:0)
为此任务创建并使用front-page.php模板文件!只需将home.php的代码转储到front-page.php。
如果存在,则在网站上使用front-page.php模板文件 首页无论是否设置&gt;阅读 - &gt;首页 显示'设置为“静态页面”或“您的最新帖子”,主题 将需要考虑这两个选项,以便网站首页 将显示静态页面或博客帖子索引。
查看此官方WordPress文档https://codex.wordpress.org/Creating_a_Static_Front_Page