0
我已經下載了一些插件來呈現我的網站內的YouTube搜索,短代碼完美工作在網頁/帖子上,但是當我在index.php
上使用<?php echo do_shortcode('[soundcloud_wpress]');?>
時,它沒有顯示任何內容。短代碼不能在index.php上工作
的index.php:
<?php
/**
* The main template file
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* e.g., it puts together the home page when no home.php file exists.
*
* Learn more: {@link https://codex.wordpress.org/Template_Hierarchy}
*
* @package WordPress
* @subpackage Twenty_Fifteen
* @since Twenty Fifteen 1.0
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<div class="row searchdiv-wrapper">
<div class="col-sm-6 youtube-search">
<?php echo do_shortcode('[youtube_wpress]');?>
</div>
<div class="col-sm-6 soundcloud-search">
<?php echo do_shortcode('[soundcloud_wpress]');?>
</div>
</div>
</main><!-- .site-main -->
</div><!-- .content-area -->
<?php get_footer(); ?>
的插件添加簡碼:
$GLOBALS['ygp_youtube_wpress'] = get_option('ygp_youtube_wpress');
$GLOBALS['ygp_youtube_wpress']['plugin_code'] = 'youtube_wpress';
$GLOBALS['ygp_youtube_wpress']['item_name'] = 'youtube_wpress';
//error_reporting(E_WARNING);
require_once dirname(__FILE__).'/include/vbox/include/webzone.php';
require_once dirname(__FILE__).'/activation.php';
$a1=new Youtube_wpress_activation();
if($a1->verify_activation()) {
require_once dirname(__FILE__).'/youtube_widget.php';
}
if(is_admin()) {
require_once dirname(__FILE__).'/admin/options.php';
}
class Youtube_wpress {
function Youtube_wpress() {
if(is_admin()) {
register_activation_hook(__FILE__, array(__CLASS__, 'on_plugin_activation'));
//Settings link
add_filter('plugin_action_links', array(__CLASS__, 'plugin_action_links'), 10, 2);
}
//Shortcodes
add_shortcode('youtube_wpress', array(__CLASS__, 'youtube_wpress_shortcode'));
}
function add_scripts_wp_footer() {
}
我從插件類只添加了第一頂碼。
任何想法爲什麼回聲短代碼不能只在index.php
內工作?
感謝和抱歉的初學者問題。
嗯,這不行。當我在使用[?php echo do_shortcode('[soundcloud_wpress]')時在[posts]或page中使用[soundcloud_wpress]時如何結束? ?>裏面index.php這不工作。 – user2635001