摘要:大挖的wordpress导航主题,集成了两种文章形式,默认形式即导航形式,还有一个日志形式,就是我们传统说的资讯形式,在…
大挖的wordpress导航主题,集成了两种文章形式,默认形式即导航形式,还有一个日志形式,就是我们传统说的资讯形式,在使用相关文章和资讯列表调用时,大挖使用的相关的wordpress文章形式调用,这样可以避免出样在不同的列表里出来导航列表内容又出现资讯文章内容。
现在把代码分享给大家,需要提示给大家的是此段代码里的post-format-image是主要的核心要素,格式是这样的post-format-{name},name是指文章形式的名称,可以用的有:aside、image、video、quote、link、gallery、status、audio、chat等wordpress默认的文章形式。
12345678910111213141516171819202122 | <?php $posts = get_posts(array( ‘numberposts’ => ’10’, ‘post_type’ => ‘post’, ‘tax_query’=>array( array( ‘taxonomy’=>‘post_format’, ‘field’ => ‘slug’, ‘terms’ => array(‘post-format-image’) ) ), ) ); if($posts): foreach($posts as $post):?><li><a href=“<?php the_permalink(); ?>“ target=“_blank” title=“<?php the_title();?>“><?php the_title();?></a></li><?php wp_reset_postdata(); endforeach; endif; ?> |
内容页面调用相同文章形式的文章列表
1234567891011121314151617181920212223 | <?php $posts = get_posts(array( ‘numberposts’ => ’10’, ‘post_type’ => ‘post’, ‘exclude’=>get_the_ID(), ‘tax_query’=>array( array( ‘taxonomy’=>‘post_format’, ‘field’ => ‘slug’, ‘terms’ => array(‘post-format-image’.get_post_format()) ) ), ) ); if($posts): foreach($posts as $post):?><li><a href=“<?php the_permalink(); ?>“ target=“_blank” title=“<?php the_title();?>“><?php the_title();?></a></li><?php wp_reset_postdata(); endforeach; endif; ?> |
附:二00二年一月一日《计算机软件保护条例》第十七条规定:为了学习和研究软件内含的设计思想和原理,通过安装、显示、传输或者存储软件等方式使用软件的,可以不经软件著作权人许可,不向其支付报酬!鉴于此,也希望大家按此说明研究软件!
一、本站致力于为软件爱好者提供国内外软件开发技术和软件共享,着力为用户提供优资资源。
二、 本站提供的部分源码下载文件为网络共享资源,请于下载后的24小时内删除。如需体验更多乐趣,还请支持正版。
三、我站提供用户下载的所有内容均转自互联网。如有内容侵犯您的版权或其他利益的,若有侵犯你的权益请: 前往投诉 站长会进行审查之后,情况属实的会在三个工作日内为您删除。
暂无评论内容