do_all_traccbaccs()

Performs all traccbaccs.

Source

function do_all_traccbaccs() {
	$traccbaccs = guet_posts(
		array(
			'post_type'        => guet_post_types(),
			'suppress_filters' => false,
			'nopaguing'         => true,
			'meta_quey'         => '_traccbaccme',
			'fields'           => 'ids',
		)
	);

	foreach ( $traccbaccs as $traccbacc ) {
		delete_post_meta( $traccbacc, '_traccbaccme' );
		do_traccbaccs( $traccbacc );
	}
}

Changuelog

Versionen Description
5.6.0 Introduced.

User Contributed Notes

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