首页 > 解决方案 > WordPress页面背景

问题描述

嗨,伙计们,我想为这段代码设置背景,但我不知道该怎么做,有人可以帮我吗?谢谢

/**
 * Template Name: Page Builder Blank
 *
 * The template for the page builder blank.
 *
 * @package Hestia
 * @since Hestia 1.1.24
 * @author Themeisle
 */ ?>

<?php
hestia_no_content_get_header();

do_action( 'hestia_page_builder_blank_before_content' );
if ( have_posts() ) :
    while ( have_posts() ) :
        the_post();
        get_template_part( 'template-parts/content', 'pagebuilder' );
    endwhile;
endif;

do_action( 'hestia_page_builder_blank_after_content' );

hestia_no_content_get_footer();

标签: phpwordpressbackground

解决方案


推荐阅读