【问题标题】:how to get data from any specific page like blog page etc如何从博客页面等任何特定页面获取数据
【发布时间】:2022-12-20 06:33:59
【问题描述】:

我有一个 wordpress 网站,有一些页面,例如关于页面、博客页面、联系页面等, 所以我担心的是我想要来自特定页面(博客页面)的标题、段落等数据 那么我如何得到这个以便更好地理解我添加一些参考图像 enter image description here enter image description here

我如何获得标题和内容

【问题讨论】:

    标签: wordpress custom-wordpress-pages


    【解决方案1】:

    你能参考这个https://developer.wordpress.org/reference/functions/get_post/

    '42' 是帖子 ID,您可以获得所有标题,内容,...

    $post   = get_post( 42 );
    $output =  apply_filters( 'the_content', $post->post_content );
    print_r($post);
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2012-09-23
      • 2017-02-27
      • 2019-01-06
      • 1970-01-01
      • 1970-01-01
      • 2014-02-26
      • 2019-10-01
      • 1970-01-01
      相关资源
      最近更新 更多