The_contentを出力した以下のブログテンプレートがあります。 <!--more-->
を配置しました
しかしそれは機能しているようには見えない、
http://www.milknhny.co.uk/DVine/?page_id=19
これが機能するためには、関数内に含める必要があるものはありますか?
私のブログテンプレートのコード
<?php
/*
Template Name: Blog Template
*/
?>
<?php get_header();?>
<?php echo get_the_post_thumbnail($post->ID, 'single-post-thumbnail'); ?>
<div id="maincontentwrap" role="main">
<?php query_posts('showposts=5'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="datebackground"><span class="day"><?php echo get_the_date('j'); ?></span> <span class="month"><?php echo get_the_date('M'); ?></span></div>
<div class="postsh1"><?php echo get_the_title(); ?></div>
<div id="blogwrapper">
Written by <?php the_author_posts_link() ?> in <?php the_category(); ?>
<?php the_content('read more...'); ?>
<br>
<div class="pagedivider"></div>
</div>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
</div><!-- #content -->
<?php get_footer(); ?>
編集
私はこれをTwenty Twelveテーマの中で見つけました、そして、私はこれを私自身のものに合わせようとしました - しかし、実際のコードはエラーです...
function DTheme_excerpt_length( $length ) {
return 40;
}
add_filter( 'excerpt_length', 'DTheme_excerpt_length' );
if ( ! function_exists( 'DTheme_continue_reading_link' ) ) :
/**
* Returns a "Continue Reading" link for excerpts
*
* @since Twenty Ten 1.0
* @return string "Continue Reading" link
*/
function DTheme_continue_reading_link() {
return ' <a href="'. get_permalink() . '">' . __( 'Continue reading <span class="meta- nav">→</span>', 'DTheme' ) . '</a>';
}
endif;
/**
* Replaces "[...]" (appended to automatically generated excerpts) with an Ellipsis and twentyten_continue_reading_link().
*
* To override this in a child theme, remove the filter and add your own
* function tied to the excerpt_more filter hook.
*
* @since Twenty Ten 1.0
* @return string An Ellipsis
*/
function DTheme_auto_excerpt_more( $more ) {
return ' …' . DTheme_continue_reading_link();
}
add_filter( 'excerpt_more', 'DTheme_auto_excerpt_more' );
?>
これがうまくいくためには、上記を適応させる必要があるでしょうか。
編集
こんにちはすべて、これは以下の素晴らしい助けの後に部分的に働いているように見えます、しかしそれはまだ内容の覆いの中に表示されていません
<?php get_header(); ?>
<div id="maincontentwrap" role="main">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="datebackground"><span class="day"><?php echo get_the_date('j'); ?></span> <span class="month"><?php echo get_the_date('M'); ?></span></div>
<div class="postsh1"><?php echo get_the_title(); ?></div>
<div id="blogwrapper">
Written by <?php the_author_posts_link() ?> in <?php the_category(); ?>
<?php the_content(); ?>
<br>
<div class="pagedivider"></div>
</div>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
</div><!-- #content -->
<?php get_footer(); ?>
私はあなたの問題に寄与しているかもしれないいくつかのことを見ます。
まず、Template Hierarchyで指定されているhome.php
を使用するのではなく、ブログ投稿インデックスを表示するためにカスタムページテンプレートを使用しています。 <!--more-->
タグは単数ページでは動作しないので、デフォルトのクエリでファンキーなことをしているので(これについては後ほど詳しく説明します)、$more
が依存するグローバルな<!--more-->
は次のように設定されないかもしれません。あなたはそれがあることを期待しています。
それで、最初のステップはブログ投稿インデックスとして静的ページのための適切な設定をセットアップすることです:
Dashboard -> Settings -> Reading
でPosts Pageとして選択されていることを確認してください。home.php
に変更します。Template Name: Blog Template
タグを削除しますそれだけでは問題が解決しない場合は、次に調査する問題は、query_posts()
を使用したデフォルトのクエリに悩まされている方法です。 query_posts()
は、決して使わないでください。
ブログ投稿のインデックスを指定した数の投稿を表示するように設定したい場合は、次のように$query
でpre_get_posts
をフィルタリングします。
function wpse76634_filter_pre_get_posts( $query ) {
if ( is_home() && $query->is_main_query() ) {
$query->set( 'posts_per_page', '5' );
}
}
add_action( 'pre_get_posts', 'wpse76634_filter_pre_get_posts' );
それから、テンプレートファイルのquery_posts()
への呼び出しを取り除きます。
<!--more-->
の正しい使い方それでも問題が解決しない場合は、次のステップは<!--more-->
タグ自体の使用方法を確認することです。
タグが正確に<!--more-->
、<!--
とmore
の間、またはmore
と-->
の間にスペースがないことを確認してください。 。
それでも問題が解決しない場合は、functions.php
またはPluginのどちらかに、<!--more-->
タグの機能を変更しているコードがある可能性があります。
プラグイン関連の問題をテストするには、すべてのプラグインを無効にして、デフォルトのテーマ(現在はTwenty Twelve)に切り替えて<!--more-->
タグが正しく機能するかどうかを確認します。それでも正しく動作する場合は、プラグインを1つずつ再度有効にします。 <!--more-->
タグがまだすべてのプラグインを有効にしても正しく機能する場合、問題はテーマのどこかにあります。
次のステップはあなたのテンプレートファイルを除外することです。上記の手順に従った場合は、ブログ投稿インデックスを表示するためにWordPressがhome.php
にフォールバックするように、home.php.old
の名前をindex.php
に変更します。次に、<!--more-->
タグが正しく機能するかどうかを確認します。
がなら、問題はあなたのテンプレートです。もしがそうでなければ、問題はfunctions.php
のどこかにあります。