SOHO创业

wordpress子分类使用父分类模板

子分类使用父分类模板

 function f_category_template($template){
	$category = get_queried_object();
	if($category->parent !='0'){
		while($category->parent !='0'){
			$category = get_category($category->parent);
		}
	}
	
	$templates = array();
 
	if ( $category ) {
		$templates[] = "category-{$category->slug}.php";
		$templates[] = "category-{$category->term_id}.php";
	}
	$templates[] = 'category.php';
	return locate_template( $templates );
}
Published
Categorized as 建站知识 Tagged ,

By SOHO

wowsoho.com是一个关注跨境电商、创业话题的网站。

wordpress移除wp_head不常用代码

把不常用的代码移除,让wordpress快起来,想要非一样的感觉,可以试试。

自建外贸站群与租用外贸网站的比较分析

自建外贸站群和租用外贸网站各有优劣,适用于不同的业务场景和需求。在实际操作中,企业应根据自身的实际情况和需求,综合考虑成本、灵活性、定制性、品牌建设与推广以及风险与稳定性等因素,选择最适合自己的外贸网站策略。

WordPress外贸建站课程深度探讨

  在数字化时代,拥有一个专业的网站对于企业和个体创业者而言至关重要。WordPress外贸建站课程为零基础者… Continue reading WordPress外贸建站课程深度探讨

The Best WordPress Chinese Theme Simplified Website WordPress Theme

If you are looking for an excellent WordPress Chinese theme, Jianzhanpress.com is undoubtedly a good option worth considering.

海外华人最喜欢使用的wordpress中文主题

简站WordPress主题凭借其简洁、实用、无插件和更安全的特性,在众多WordPress主题中脱颖而出,成为许多网站开发者和用户的首选。

WordPress为某个分类添加特定的内容页模板

为某个分类目录category添加特定的内容页single模板