WP Rest API获取特色图片

时间:2015-09-19 09:36:03

标签: angularjs wordpress rest wp-api

我正在构建一个相对简单的博客页面,该页面使用WP Rest Api和AngularJs来显示前端的数据。

在我的主页上,我想返回标题,然后是特色图片,然后是摘录。我已经把标题和摘录拉得很好似乎在JSON中,特色图像是媒体ID。什么是动态提取这些数据的最佳方法?

我已经看到互联网上使用PHP功能的各种各样的东西,但我认为最好的方法是在一个角度控制器内,只是寻找关于控制器究竟是什么的一些建议

列表视图HTML

<ng-include src=" dir + '/form.html?v=2' "></ng-include>
<div class="row">
    <div class="col-sm-8 col-lg-10 col-lg-push-1 post">         
        <div class="row-fluid">
            <div class="col-sm-12">
                <article ng-repeat="post in posts" class="projects">
                    <a class="title" href="#/post/{{post.slug}}"><h2>{{post.title.rendered}}</h2></a>
                    <p ng-bind-html="post.excerpt.rendered | to_trusted"></p>
                </article>
            </div>
        </div>
    </div>
</div>  

控制器

.controller('listPage',['$scope','Posts', function($scope,Posts){

    $scope.refreshPosts = function(){
        Posts.query(function(res){
            $scope.posts = res;
        });
    };
    $scope.refreshPosts();

    // CLEARFORMFUNCTION
    $scope.clear = function(){
        $scope.$root.openPost = false;
        jQuery('#save').modal('hide');
    };


    // SAVEMODALOPEN/COSE
    $scope.openSaveModal = function(){
        jQuery('#save').modal('show');
    }

    $scope.closeSaveModal = function(){
        jQuery('#save').modal('hide');
    }

    // DATEFUNCTION
    $scope.datify = function(date){
        $scope.date = newDate(date);
        return $scope.date.getDate()+'/'+$scope.date.getMonth()+'/'+$scope.date.getYear();
    };
}])

3 个答案:

答案 0 :(得分:4)

您还可以使用PHP修改JSON响应。这会返回我所需要的并且非常快(根据我的经验,使用_embed非常慢)

我在插件中有以下代码(用于添加自定义帖子类型),但我想你可以将它放在主题的function.php文件中。

php

add_action( 'rest_api_init', 'add_thumbnail_to_JSON' );
function add_thumbnail_to_JSON() {
//Add featured image
register_rest_field( 'post',
    'featured_image_src', //NAME OF THE NEW FIELD TO BE ADDED - you can call this anything
    array(
        'get_callback'    => 'get_image_src',
        'update_callback' => null,
        'schema'          => null,
         )
    );
}

function get_image_src( $object, $field_name, $request ) {
    $size = 'thumbnail'; // Change this to the size you want | 'medium' / 'large'
    $feat_img_array = wp_get_attachment_image_src($object['featured_media'], $size, true);
    return $feat_img_array[0];
}

现在,在您的JSON响应中,您应该会看到一个名为"featured_image_src":的新字段,其中包含缩略图的网址。

在此处阅读有关修改回复的更多信息:
http://v2.wp-api.org/extending/modifying/

以下是有关wp_get_attachment_image_src()功能的更多信息 https://developer.wordpress.org/reference/functions/wp_get_attachment_image_src/

**注意:如果这是一个新的php文件,请不要忘记<?php ?>标签!

答案 1 :(得分:3)

事实证明,在我的情况下,有一个新的插件可以解决这个问题,而无需发出辅助请求。看我最近的问:

WP Rest API + AngularJS : How to grab Featured Image for display on page?

答案 2 :(得分:1)

如果将?_embed参数发送给查询,它将在响应中返回更多信息,例如图像,类别和作者数据。

const result = await axios.get(`/wp-json/wp/v2/my-post-type?_embed`);

// Featured Image
result.data._embedded['wp:featuredmedia'][0].source_url;

// Thumbnail
result.data._embedded['wp:featuredmedia'][0]['media_details']['sizes']['medium']['source_url']