uwebpro/wp-extends

A simple library to extend WP_Post

v3.1 2020-07-27 09:07 UTC

This package is auto-updated.

Last update: 2024-04-27 18:40:40 UTC


README

Allowing you to use WordPress your way

WP_Post

<?php
use UWebPro\WordPress\Post as WP_Post;

class CareHomes extends WP_Post{
    public function location(): ?string
    {
        $category = \wp_get_post_terms($this->ID, 'locations');
        return !$category ? null : $category[0]->name;
    }
}