Wordpress教程 2023年05月10日
0 收藏 0 点赞 1,351 浏览 1269 个字

可以在主题模板中使用 _izhanke() 函数获取后台设置的 xinwen_num 字段的值,然后将其传递到 query_posts() 函数中的 showposts 参数。

/*
 * ------------------------------------------------------------------------------
 * 其他调用
 * ------------------------------------------------------------------------------
 */
CSF::createSection($prefix, array(
    'id'     => 'too_ad',
    'icon'   => 'fa fa-leanpub',
    'title'  => '其他调用',
    'fields' => array(
        array(
            'type'    => 'notice',
            'style'   => 'warning',
            'content' => '分割线 (首页新闻公告设置)',
        ),           
       
        array(
            'id'          => 'xinwen_id',
            'type'        => 'select',
            'title'       => '新闻分类',
            'placeholder' => '选择分类栏目',
            'options'     => 'categories',
        ),      

        array(
            'id'      => 'xinwen_num',
            'type'    => 'text',
            'title'   => '显示数量',
            'default' => '8',
        ),  
    )
));


在模板里调用:
	
<?php
// 获取设置的值
$xinwen_id = _izhanke('xinwen_id');
$xinwen_num = _izhanke('xinwen_num');
?>	

<?php // 调用文章
query_posts('cat=' . $xinwen_id . '&showposts=' . $xinwen_num);
while (have_posts()) : the_post(); ?>
  	
<li>
    <a href="<?php the_permalink(); ?>" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  class="inNews_title"><?php the_title(); ?></a>
    <a href="<?php the_permalink(); ?>" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  class="inNews_ms"><?php the_excerpt(); ?></a>
    <span><?php the_time('Y-m-d H:i:s'); ?></span>
</li>
<?php endwhile; wp_reset_query(); ?>
      
<li>
    <a href="<?php the_permalink(); ?>" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  class="inNews_title"><?php the_title(); ?></a>
    <a href="<?php the_permalink(); ?>" rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  rel="external nofollow"  class="inNews_ms"><?php the_excerpt(); ?></a>
    <span><?php the_time('Y-m-d H:i:s'); ?></span>
</li>
<?php endwhile; wp_reset_query(); ?>

 

微信扫一扫

支付宝扫一扫

版权: 转载请注明出处:https://www.mizhanw.com/blog/2323.html

相关推荐
WordPress标签按拼音字母层级排序教程
此教程实现标签按拼音字母(A、B、C 等字母)层级排序,并在页面上添加一个侧边竖向字母导航 <?php /* Template Nam…
日期:2024-11-07 点赞:0 阅读:33
wordpress网站编辑器启隐藏的编辑器功能
如果开启WordPress隐藏的编辑器功能就够你用了,何必安装插件呢。 如何开启隐藏的编辑器功能 WordPress默认不支持TinyMCE…
日期:2024-10-29 点赞:0 阅读:45
在WooCommerce中添加“立即购买”按钮直接跳转到结算页面
add_action( 'woocommerce_after_add_to_cart_button', 'add_content_after…
日期:2024-10-19 点赞:0 阅读:65
实现 WordPress 自动更新所有文章的发布日期为当天的日期
//二开自动更新文章日期为当天发布。 //设置宝塔面板中的定时任务,通过访问带有?update_posts=run的链接触发文章更新.如:c…
日期:2024-09-22 点赞:0 阅读:90
WooCommerce订单列表显示购买产品
// 为 Legacy CPT-based 订单添加自定义列 add_filter('manage_edit-shop_order_colu…
日期:2024-09-20 点赞:0 阅读:179
WooCommerce Order 类的所有Get方法,以面向对象的方法获取订单数据
在开发WooCommerce插件或者与第三方系统交互时,我们需要获取 WooCommerce 订单的数据,WooCommerce的 WC_O…
日期:2024-09-20 点赞:0 阅读:185
发表评论
暂无评论

还没有评论呢,快来抢沙发~