滑块应显示在主页模板中

时间:2015-11-08 作者:Mohammad Kashif

我正在使用WPExplorer Elegant Theme. 滑块也显示在首页。但如果我把我的博客页面设为首页,那么我不想在博客页面中显示滑块。我想滑块应该显示在特定的模板。下面是我的主页silder功能代码

if ( !function_exists( \'wpex_homepage_slider\' ) ) {
    function wpex_homepage_slider() {
        global $post;
        if ( ! is_front_page() ) return;
        // Get slides
        $wpex_query = new WP_Query(
            array(
                \'post_type\'         => \'slides\',
                \'posts_per_page\'    => \'-1\',
                \'no_found_rows\'     => true,
            )
        ); 
当此代码放置在标题中时。php

<?php
        // Displays the homepage slider based on the slides custom post type
        wpex_homepage_slider(); ?>

1 个回复
最合适的回答,由SO网友:Mohammad Kashif 整理而成

刚刚删除if ( ! is_front_page() ) return; 从功能主页滑块。然后搬走了

<?php
     // Displays the homepage slider based on the slides custom post type
        wpex_homepage_slider(); ?>
在我的愿望模板从标题。php

相关推荐

Wp-Content/Themes文件夹在哪里?

我想为我的wordpress站点创建一个子主题(仅供参考),这样我的更改就不会被每次更新所覆盖。显然,我需要在wp-content/themes文件夹中为子主题创建一个子文件夹。问题是,我找不到它。我曾尝试将wp内容和wp内容/主题添加到域中-它生成了一个空白的白色页面。我试着在spotlight文件搜索(是的,我有一台mac电脑)中搜索它(只是“wordpress”),它只找到了一些我在2010年安装的wordpress文件夹,我甚至都不记得做过这些。由于我最近在过去两周(2014年5月)建立了这个网站