结合Reveal IDs 和php_everywhere_code提取文章信息

[php_everywhere]

—————————————————————————-

//<?php
$post_id =1; // 文章ID,可以在WP后台找到
//echo get_post( $post_id )->guid; // 输出文章的内容
//echo get_post( $post_id )->post_title; // 输出文章的内容
echo “<a href=”;
echo get_post( $post_id )->guid;
echo ” target=“blank”>” ;
echo get_post( $post_id )->post_title;
echo “</a>” ;
$date=date_create($post_id->post_date);
echo “……..” ;
echo date_format($date,”Y 年 m 月 d 日”);
//echo get_post( $post_id )->post_content;
$content= “.<br>”;// OR
echo $content ;
$post_id =84; // 文章ID,可以在WP后台找到
//echo get_post( $post_id )->guid; // 输出文章的内容
//echo get_post( $post_id )->post_title; // 输出文章的内容
echo “<a href=”;
echo get_post( $post_id )->guid;
echo ” target=“blank”>” ;
echo get_post( $post_id )->post_title;
echo “</a>” ;
$date=date_create($post_id->post_date);
echo “……..” ;
echo date_format($date,”Y 年 m 月 d 日”);
//echo get_post( $post_id )->post_content;

//?>