Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Akteurabfrage

// WP_Query arguments
$args = array(
	'post_type'              => array( 'akteur' ),
	'post_status'            => array( 'published' ),
	'author'                 => 'current_author',
);

// The Query
$query = new WP_Query( $args );