Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

LLMS_Post_Relationships::delete_wp_posts( WP_Post $post, array $data )

Delete or trash WP Posts related to the deleted post.


Parameters Parameters

$post

(WP_Post) (Required) WP Post that's been deleted.

$data

(array) (Required) Relationship data array.


Top ↑

Return Return

(void)


Top ↑

Source Source

File: includes/class.llms.post.relationships.php

	private function delete_wp_posts( $post, $data ) {

		$relationships = $this->get_related_posts( $post->ID, $data['post_type'], $data['meta_key'] );

		$force = ( 'delete' === $data['action'] );

		foreach ( $relationships as $id ) {
			wp_delete_post( $id, $force );
		}

	}


Top ↑

Changelog Changelog

Changelog
Version Description
3.37.8 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.