php 全角特色图片标题叠加PAGE / POST

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 全角特色图片标题叠加PAGE / POST相关的知识,希望对你有一定的参考价值。

<?php
/** 
 * Tourizmo-Pro * 
 * This file edits the single template for posts in Tourizmo-Pro.
 *
 * @package Tourizmo-Pro
 * @author  GeckoGrafix
 * @license GPL-2.0+
 * @link    http://geckografix.guru/
 */
// Add page header body class to the head
add_filter( 'body_class', 'tourizmo_single_page_header_body_class' );
function tourizmo_single_page_header_body_class( $classes ) {
    if( has_post_thumbnail() )        
         $classes[] = 'with-page-header';
    return $classes;
}

// Add page header 
add_action( 'genesis_after_header', 'tourizmo_single_page_header', 8 );
function tourizmo_single_page_header() { 
    $output = false;
    $image = get_post_thumbnail_id();
    if( $image ) {
        // Remove the title since we'll add it later        
        remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
        
        $image = wp_get_attachment_image_src( $image, 'tourizmo_page_hero' );        
        $background_image_class = 'with-background-image';        
        $title = the_title( '<h1>', '</h1>', false );                
        
        $output .= '<div class="page-header bg-primary with-background-image" 
        style="background-image: url(' . $image[0] . ');"><div class="wrap">';        
        $output .= '<div class="header-content">' . $title . '</div>';        
        $output .= '</div></div>';    
   }

 if( $output ) 
      echo $output;
}

genesis();
<?php
/** 
 * Tourizmo-Pro * 
 * This file edits the single template for pages in Tourizmo-Pro.
 *
 * @package Tourizmo-Pro
 * @author  GeckoGrafix
 * @license GPL-2.0+
 * @link    http://geckografix.guru/
 */
// Add page header body class to the head
add_filter( 'body_class', 'tourizmo_single_page_header_body_class' );
function tourizmo_single_page_header_body_class( $classes ) {
    if( has_post_thumbnail() )        
         $classes[] = 'with-page-header';
    return $classes;
}

// Add page header 
add_action( 'genesis_after_header', 'tourizmo_single_page_header', 8 );
function tourizmo_single_page_header() { 
    $output = false;
    $image = get_post_thumbnail_id();
    if( $image ) {
        // Remove the title since we'll add it later        
        remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
        
        $image = wp_get_attachment_image_src( $image, 'tourizmo_page_hero' );        
        $background_image_class = 'with-background-image';        
        $title = the_title( '<h1>', '</h1>', false );                
        
        $output .= '<div class="page-header bg-primary with-background-image" 
        style="background-image: url(' . $image[0] . ');"><div class="wrap">';        
        $output .= '<div class="header-content">' . $title . '</div>';        
        $output .= '</div></div>';    
   }

 if( $output ) 
      echo $output;
}

genesis();

以上是关于php 全角特色图片标题叠加PAGE / POST的主要内容,如果未能解决你的问题,请参考以下文章

php 标题叠加特色图像

如何在 woocommerce 中获取产品的特色图片

Wordpress-获取特色图片url

Wordpress从图库中排除特色图片

Wordpress 的特色图片未出现在管理员中

通过 SQL 检索带有特色图片的 wordpress 帖子