WordPress如何通过ID获取Page页面标题、链接和缩略图
使用WordPress建网站时,往往需要通过页面的ID号来获取链接。下面是Wordpress通过ID获取分类和Page的链接的二种代码。
WordPress通过ID获取Page页面链接:
<?php echo get_page_link( 1 );?>
除此之外,wordpress中可以通过 get_page() 函数,来获得指定ID的页面的内容、标题、url等信息。
通过ID获取PAGE标题
<?php echo get_page( 1 )->post_title;?>
通过ID获取PAGE简介
<?php echo mb_strimwidth(strip_tags(apply_filters('the_content', get_page(1)->post_content)), 0, 200,'……'); ?>
通过ID获取PAGE缩略图
<?php $page_ID=1;$post_thumbnail_id = get_post_thumbnail_id( $page_ID );$post_thumbnail_src = wp_get_attachment_image_src($post_thumbnail_id,'full');?><?php echo $post_thumbnail_src[0]; ?>
更多用法:
<?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 :评论数量
?>