php 使用Genesis中的博客模板在博客帖子页面或页面上添加介绍文本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 使用Genesis中的博客模板在博客帖子页面或页面上添加介绍文本相关的知识,希望对你有一定的参考价值。

<?php
//don't add again


add_action( 'edit_form_after_title', 'your_prefix_posts_page_edit_form' );
/**
 * Add Editor Back on Posts Page
 * @thanks https://robincornett.com/posts-page/
 */
 function your_prefix_posts_page_edit_form( $post ) {
	$posts_page = get_option( 'page_for_posts' );
	if ( $posts_page === $post->ID ) :
		add_post_type_support( 'page', 'editor' );
	endif;
}


add_action( 'genesis_before_loop', 'your_prefix_blog_page_or_blog_template_intro_text' );
/**
 * Add Intro Text entered in the page editor on the:
 * - 1st page of Blog posts page (if it's not the front page)
 * - 1st page of Blog Template page (a page using the Genesis blog template)
 *
 * uses `the_content` filter so you can add shortcodes, videos (embeds), etc.,
 *
 * Does not work if you show latest posts on home page 
 * since there is no page to get content from.
 *
 * @thanks and modified: https://robincornett.com/posts-page/
 */
function your_prefix_blog_page_or_blog_template_intro_text() {
	
	if ( is_front_page() ) return; //* exit if front page
	
	global $post;
	$posts_page = get_option( 'page_for_posts' );
	$content    = '';

	if ( is_home() && ! is_paged() ) :

		$content = get_post( $posts_page )->post_content;
		
	endif; // blog page
	
	if ( is_page_template( 'page_blog.php' ) && ! is_paged()  ) :
	
		$content = $post->post_content;
		
	endif; // page blog template
	
	
	if ( $content != '' ) :
		
		$content = apply_filters( 'the_content', $content );
		
		printf( '<div class="blog-intro-content">%s</div>', $content );
	
	endif;	

}

以上是关于php 使用Genesis中的博客模板在博客帖子页面或页面上添加介绍文本的主要内容,如果未能解决你的问题,请参考以下文章

php 将Genesis中的“找不到帖子”文本更改为自定义文本

GatsbyJS 博客中的分页

Wordpress没有使用home.php而是使用index.php作为帖子页面。

在Django中自定义模板标签以过滤博客中的featured_posts

WordPress中的自定义博客存档页面

php Genesis帖子格式。