重置wp职位经理中所有职位列表的公司徽标

时间:2019-07-09 12:01:55

标签: wordpress

我确实将所有工作清单从一个站点导入到另一个站点,但是公司徽标图像网址有问题,我想做的是为所有工作清单重置公司徽标,因此请使用过滤器进行设置,或找到一种正确导入图像的方法。

/* This code will set the default company logo, but if there is already existing logo it will not work*/

add_filter( 'job_manager_default_company_logo', 'smyles_custom_job_manager_logo' );
function smyles_custom_job_manager_logo( $logo_url ){
	// Change the value below to match the filename of the custom logo you want to use
	// Place the file in a /images/ directory in your child theme's root directory.
	// The example provided assumes "/images/custom_logo.png" exists in your child theme
	$filename = 'logo_clear.png';
	
	$logo_url = get_stylesheet_directory_uri() . '/img/' . $filename;
	
	return $logo_url;
	
}

0 个答案:

没有答案