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_Student::insert_status_postmeta( int $product_id, string $status = '', string $trigger = null )

Add a new status record to the user postmeta table for a specific product


Parameters Parameters

$product_id

(int) (Required) WP Post ID of the course or membership

$status

(string) (Optional) string describing the new status

Default value: ''

$trigger

(string) (Optional) String describing the reason for enrollment (optional)

Default value: null


Top ↑

Return Return

(boolean)


Top ↑

Source Source

File: includes/models/model.llms.student.php

	private function remove_favorite_postmeta( $object_id ) {

		$update = llms_delete_user_postmeta( $this->get_id(), $object_id, '_favorite', true );

		// Returns boolean if postmeta update is successful.
		return is_array( $update ) ? false : true;

	}

	/**
	 * Add student postmeta data for enrollment into a course or membership


Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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