# wp-parsely/3.24.1/src/Metadata/class-post-builder.php

Parse.ly, version 3.24.1. 85 lines.

- Page: https://pluginprobe.com/plugins/wp-parsely/3.24.1/code/src/Metadata/class-post-builder.php
- Raw: https://pluginprobe.com/plugins/wp-parsely/3.24.1/raw/src/Metadata/class-post-builder.php
- Modified: 2024-03-12T09:31:56+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-parsely/3.24.1/code/src/Metadata/class-post-builder.php#L10-L20`.

```php
<?php
/**
 * Post Page Metadata Builder class
 *
 * @package Parsely
 * @since 3.4.0
 */

declare(strict_types=1);

namespace Parsely\Metadata;

use Parsely\Parsely;
use WP_Post;

/**
 * Implements abstract Metadata Builder class to generate the metadata array
 * for a post page.
 *
 * @since 3.4.0
 */
class Post_Builder extends Metadata_Builder {
	/**
	 * Post object to generate the metadata for.
	 *
	 * @var WP_Post
	 */
	private $post;

	/**
	 * Constructor.
	 *
	 * @param Parsely $parsely Instance of Parsely class.
	 * @param WP_Post $post Post object to generate the metadata for.
	 */
	public function __construct( Parsely $parsely, WP_Post $post ) {
		parent::__construct( $parsely );
		$this->post = $post;
	}

	/**
	 * Generates the metadata object by calling the build_* methods and
	 * returns the value.
	 *
	 * @since 3.4.0
	 *
	 * @return array<string, mixed>
	 */
	public function get_metadata(): array {
		$this->build_basic();
		$this->build_headline();
		$this->build_url();

		$this->build_type( $this->post, 'post' );
		$this->build_main_entity( 'post' );
		$this->build_thumbnail_url( $this->post );
		$this->build_image( $this->post );
		$this->build_article_section( $this->post );
		$this->build_author( $this->post );
		$this->build_publisher();
		$this->build_keywords( $this->post );
		$this->build_metadata_post_times( $this->post );

		return $this->metadata;
	}

	/**
	 * Populates the headline field in the metadata object.
	 *
	 * @since 3.4.0
	 */
	private function build_headline(): void {
		$this->metadata['headline'] = $this->clean_value( get_the_title( $this->post ) );
	}

	/**
	 * Populates the url field in the metadata object by getting the current page's URL.
	 *
	 * @since 3.4.0
	 */
	protected function build_url(): void {
		$this->metadata['url'] = $this->get_current_url( 'post', $this->post->ID );
	}
}

```
