我已经开发了自定义wordpress主题与集成的视觉作曲家插件,它安装工作正常,但问题是我从后端安装我的自定义主题插件,所有视觉作曲家功能工作,但在前端没有显示设计,因为我有设置在后端,这意味着当我的主题安装视觉作曲家插件js和css没有加载,当我安装其他主题它正常工作,请让我摆脱这个问题我有一天浪费时间找到但没有得到任何适当的解决方案。
对于Ex:我在后端设置了三列,但是当我在前端显示时,它不是三列。
Header.php文件
$re = '/ ([A-Z ]+)$/m';
$str = '147 Boulevard Vauban80101 ABBEVILLE
80 rue Henri Dunant94480 ABLON SUR SEINE
3465 route Eguilles13090 AIX EN PROVENCE
';
preg_match_all($re, $str, $matches, PREG_SET_ORDER, 0);
// Print the entire match result
var_dump($matches[1]);
Footer.php文件
<?php
/*
Template Name:Header
*/
?>
<!DOCTYPE html>
<html class="top">
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width">
<link rel="profile" href="http://gmpg.org/xfn/11">
<?php wp_head();?>
</head>
<body <?php body_class(); ?> id="page-wrap">
<div id="page" class="main-site">
<header id="master-header" class="main-header">
<div class="site-branding">
<a href="<?php echo esc_url( home_url() ); ?>" class="link-logo"><img src="<?php echo esc_url( home_url() ); ?>/wp-content/uploads/2017/12/test.png" class="logo"></a>
<?php
wp_nav_menu( array(
'theme_location' => 'primary-menu',
'container_class' => 'top-navigation-menu' )
);
?>
</div>
</header>
<div id="main-content" class="data-content">
<div class="container-fluid">
Function.php文件
</div>
</div>
</div>
<?php get_footer(); ?>
</body>
</html>
答案 0 :(得分:1)
尝试创建这样的页面模板,并在编辑后端显示选项或新页面部分模板选择“首页模板”并更新页面将显示带有视觉设计的内容
<?php
/**
* Template Name: Front Page Template // You can change the name
*
* @package WordPress
* @subpackage demo // Theme Name
* @since demo 1.0
*/
get_header(); ?>
<div class="main_content">
<div class="container">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post() ?>
<?php the_content() ?>
<?php endwhile; ?>
<?php endif; ?>
</div><!-- container -->
</div><!-- main_content -->
<?php get_footer(); ?>