Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Get posts by tag name that matches title

$tax_query = array(
	array(
		'taxonomy'         => 'tags',
		'terms'            => 'get_the_title()',
		'field'            => 'name',
	),
	array(
	),
);