# wordpress-seo/trunk/src/task-list/domain/tasks/abstract-parent-task.php

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

- Page: https://pluginprobe.com/plugins/wordpress-seo/trunk/code/src/task-list/domain/tasks/abstract-parent-task.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/trunk/raw/src/task-list/domain/tasks/abstract-parent-task.php
- Modified: 2026-03-05T08:37: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/wordpress-seo/trunk/code/src/task-list/domain/tasks/abstract-parent-task.php#L10-L20`.

```php
<?php
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
namespace Yoast\WP\SEO\Task_List\Domain\Tasks;

/**
 * Abstract class for a parent task (a task with child tasks).
 * Use this when you need a parent task that is NOT a post type task.
 */
abstract class Abstract_Parent_Task extends Abstract_Task implements Parent_Task_Interface {

	use Parent_Task_Trait;
}

```
