WORDPRESS调用后台所有页面名称和别名
WORDPRESS调用后台所有页面的代码: <?php wp_list_pages(‘sort_colu…
WORDPRESS调用后台所有页面的代码:
<?php wp_list_pages('sort_column=menu_order&title_li=0&include='); ?>
参数含义:
- sort_column:根据后台页面顺序列出页面
- title_li:显示或者隐藏页面列表的标题
- include:控制显示的页面
还可以使用下面的代码进行更加灵活的调用所有PAGE页面;
<?php
$pages = get_pages();
foreach ($pages as $pagg) {
echo '<li><a href="' . get_page_link($pagg->ID). '">' . $pagg->post_title . '</a></li>';
/*echo '<li><a href="' . get_page_link($pagg->ID). '">' . get_page_link($pagg->ID). '</a></li>';*/
}
?>
另外还可以使用我们常用的循环代码来调用出所有的page
<?php if (have_posts()) : ?>
<?php query_posts('cat=-78' . $mcatID. '&caller_get_posts=1&showposts=5000&order=DESC&orderby=ID&post_type=page'); ?>
<?php while (have_posts()) : the_post(); ?>
<li>
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a> | <?php the_ID(); ?> | <?php echo get_post_meta($post->ID,"post_views_count",true);?>
</li>
<?php endwhile;?>
<?php endif;?>
更多的关于PAGE页面的调用代码:
调用当前PAGE页面的别名:
<?php if( is_page() ){$post_data = get_post($post->ID, ARRAY_A); echo $post_data['post_name'];} ?>
wordpress可以通过 get_page() 函数,来获得指定ID的页面的内容、标题等信息。
<?php
get_page( $page_id ); //$page_id为页面ID号,后台可以找到
?>
以下是关于指定页面的其他信息:
<?php
echo get_page( $page_id )->ID; // 输出页面的ID
// ID :页面ID号
// post_author :作者ID
// post_date :时间
// post_content :页面内容
// post_title :页面标题
// post_excerpt :页面摘要
// post_status :页面状态(发布,审核,加密等)
// comment_status :评论状态(开启或关闭)
// ping_status :Ping状态(开启或关闭)
// post_password :页面密码
// post_name :页面名称
// post_modified :页面修改时间
// post_parent :页面父级名称
// guid :页面URl地址
// menu_order :排序
// post_type :类型Page
// comment_count :评论数量
?>
<?php echo mb_strimwidth(get_page(2)->post_content,0,600); ?>
这个代码也是可以调用页面的内容,好处在于限制页面内容的数字,详细信息如上面所述,可以在首页进行对指定的页面进行调用。
类别:WordPress开发、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!