Remove post date from showing up in Google Search

How would I go about removing the listing post date from appearing in Google Search? None of the other directories in my niche display the date and I want to follow suit.

Please try this PHP snippet as a possible solution

add_action(
	'hivepress/v1/templates/listing_view_page',
	function($template) {
		return hivepress()->helper->merge_trees(
			$template,
			[
				'blocks' => [
					'listing_created_date' => [
						'type' => 'content',
					],
				],
			]
		);
	},
	1000
);

Also, it is possible to try to make changes in your SEO plugin if such exist in your website

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.