# wordpress-seo/28.4/src/bulk-editor/application/updates/field-renderer-interface.php

Yoast SEO – Advanced SEO with real-time guidance and built-in AI, version 28.4. 22 lines.

- Page: https://pluginprobe.com/plugins/wordpress-seo/28.4/code/src/bulk-editor/application/updates/field-renderer-interface.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/28.4/raw/src/bulk-editor/application/updates/field-renderer-interface.php
- Modified: 2026-08-18T12:23:36+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/wordpress-seo/28.4/code/src/bulk-editor/application/updates/field-renderer-interface.php#L10-L20`.

```php
<?php

// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
namespace Yoast\WP\SEO\Bulk_Editor\Application\Updates;

/**
 * Describes how a stored meta field is rendered to its display value for a post,
 * with replacement variables (`%%vars%%`) resolved.
 */
interface Field_Renderer_Interface {

	/**
	 * Renders the current value of a meta field for a post, with replacement variables resolved.
	 *
	 * @param int    $post_id  The ID of the post.
	 * @param string $meta_key The meta key (without prefix) to render.
	 *
	 * @return string The rendered value.
	 */
	public function render( int $post_id, string $meta_key ): string;
}

```
