wordpress自定义栏目 怎么设置 默认值?

2024年12月03日 08:28
有2个网友回答
网友(1):

下载测试了该主题,不得不承认这是一款好的主题,作者的代码习惯值得学习。

针对你的问题,我提供以下几个步骤:

1、启用该主题后,在后台发布slides,如图:

其中,你说的几个自定义项,如下图:

1 att_slides_video: 表示可以在幻灯片中插入一个视频,这里指定视频地址即可。具体我没测试

2 att_slides_url: 表示点击图片后的目标地址,不是必须要输

3 att_slides_url_target:表示目标地址打开的方式,默认为本窗口打开,不是必须要选


另外需注意,发布slides时,需要添加”特色图像“


2、修改代码:

以上工作做完后,还需要修改模板中index.php文件。可参考如下图:

在红色框中添加如下代码:

                            if ( is_home() || is_front_page() )
                    get_template_part( 'content', 'slides');
            ?>


经过这几步,再打开首页,你就会发现,首页已经有幻灯片呈现了!


至于第2个问题,二屏的内容在首页显示,我估摸着你是想那样的排列方式

主题网站的首页显示的portfolio类型的文章,所以你想要显示,可进一步参考content-portfolio.php文件里的源码。同时在首页加如下代码:

                            if ( is_home() || is_front_page() )
                    get_template_part( 'content', 'portfolio');
            ?>

最后记得在后台发布portfolio类型的文章才行。


---------------------

更新:

我把index.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.
 * For example, it puts together the home page when no home.php file exists.
 *
 * Learn more: http://codex.wordpress.org/Template_Hierarchy
 *
 * @package WordPress
 * @subpackage Authentic Themes
 * @since 1.0
 */
get_header(); ?>
    
        
                            if ( is_home() || is_front_page() )
                    get_template_part( 'content', 'slides');
            ?>        
                                                                   
                
                     
                    
                        
                    
                    
                    

                

            

        

    

    


搞了好久,终于回答完了,还请采纳哈~

网友(2):

直接把数据填在值里,名称就是你自定义的名称或系统名称,希望帮到你!!

相关问答
最新问答