我正在使用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(); ?>
最合适的回答,由SO网友:Mohammad Kashif 整理而成
刚刚删除if ( ! is_front_page() ) return;
从功能主页滑块。然后搬走了
<?php
// Displays the homepage slider based on the slides custom post type
wpex_homepage_slider(); ?>
在我的愿望模板从标题。php