标签: WordPress主题

  • Lucius Pharmaceutical

    Lucius Pharmaceutical

    基本介绍

    网站在 WordPress 的强劲驱动下平稳运行,其主题由老季精心制作,独具特色。该网站兼容多国语言,具有出色的国际化特性,非常适合进行 SEO 优化。在 Google SEO 评分中更是高达 90+,足见其在搜索引擎优化方面的卓越表现。

    网站的界面能够兼容多种设备,无论是桌面电脑、笔记本、平板电脑还是智能手机,都能呈现出完美的视觉效果和流畅的操作体验,充分满足不同用户在不同设备上的使用需求。

    网址:https://lucius-pharmaceuticals.com/

    关于Lucius Pharmaceutical

    Lucius Pharmaceutical is focused on providing effective, safe, and reliable medications and services for patients all over the world. We have always believed in putting health first and prioritizing innovation, continually developing new drugs and improving treatment plans to meet the needs of patients globally.

    As of June 2024, Lucius Pharmaceutical has approved the marketing of 54 anti-cancer drugs, including Sotorasib, Osimertinib, Cabozantinib, larotinib, Larotrectinib, Avatrombopag, Crizotinib, capmatinib, Lorlatinib, Capmatinib, Ivosidenib, and Gilteritinib, and more than 200 generic drug types.

    With a global presence, Lucius Pharmaceutical has established strong partnerships in countries such as Thailand, Indonesia, Cambodia, Vietnam, the Philippines, Singapore, Brunei, Malaysia, Sri Lanka, Turkey, Japan, and China. Lucius Pharmaceuticals is dedicated to providing accessible and affordable medicines to people in need all over the world.

    Lucius Pharmaceutical 专注于为世界各地的患者提供有效、安全和可靠的药物和服务。我们始终相信将健康放在首位,优先考虑创新,不断开发新药并改进治疗计划,以满足全球患者的需求。

    截至 2024 年 6 月,Lucius Pharmaceutical 已批准上市 54 种抗癌药物,包括 Sotorasib、Osimertinib、Cabozantinib、larotinib、Larotrectinib、Avatrombopag、Crizotinib、capmatinib、Lorlatinib、Capmatinib、Ivosidenib 和 Gilteritinib,以及 200 多种仿制药类型。

    Lucius Pharmaceutical 的业务遍及全球,已在泰国、印度尼西亚、柬埔寨、越南、菲律宾、新加坡、文莱、马来西亚、斯里兰卡、土耳其、日本和中国等国家建立了牢固的合作伙伴关系。Lucius Pharmaceuticals 致力于为世界各地有需要的人提供可及且价格合理的药物。

  • 值得入手的个人博客和自媒体WordPress付费主题

    值得入手的个人博客和自媒体WordPress付费主题

    JustNews主题

    JustNews这款主题最近看到的也是比较多的。目前售价是599元,不过仅限绑定一个域名,同时需要注意的是,这次活动是可以绑定两个域名。平均单个站点成鞥本是300元。

    JustNews主题

    在响应式和内容的格式丰富度上,这款主题会更优秀一些。比如适合有图文功能的。

    直达链接:https://www.jiloc.com/go/wpcom

  • 解决主题不兼容提示”Call to undefined function sg_load()”问题

    解决主题不兼容提示”Call to undefined function sg_load()”问题

    上午在安装一个主题的时候居然重新在新的服务器打开有提示”Call to undefined function sg_load()”问题,当然网站是打不开的。

     Fatal error: Uncaught Error: Call to undefined function sg_load()

    以上是报错信息,可以从信息看到可能是需要支持sg_load()扩展的,因为他的主题是付费的用的授权码,所以需要去服务器安装sg_load()。

    我们找到当前网站的PHP版本,找到扩展在线直接安装SG11,安装完毕之后再去刷新,问题解决。

  • 靖江和瑞琴行

    靖江和瑞琴行

    靖江和瑞琴行于2009年在成立,2010年靖江和瑞琴行旗舰店盛大开业。目前主营:国际主流品牌钢琴销售、流行乐器销售以及专业师资乐器教学等。

    靖江和瑞琴行是中国音乐学院社会艺术水平考级在靖江的总考点,负责统筹中国音乐学院在靖江地区的乐器考级工作。           

  • WordPress 主题/插件开发 自定义文章分类 筛选功能 图文教程

    WordPress 主题/插件开发 自定义文章分类 筛选功能 图文教程

    前面我们介绍了WordPress开发注册自定义文章的一些方法

    下面我们教大家如何在WordPress后台edit.php的自定义文章列表中筛选自定义文章的分类,代码段如下:

    function sites_posts_taxonomy_filter() {
    	global $typenow; 
    	if( $typenow == 'sites' ){ //指定post_type类型
    		$taxonomy_names = array('favorites', );//指定分类taxonomy
    		foreach ($taxonomy_names as $single_taxonomy) {
    			$current_taxonomy = isset( $_GET[$single_taxonomy] ) ? $_GET[$single_taxonomy] : '';
    			$taxonomy_object = get_taxonomy( $single_taxonomy );
    			$taxonomy_name = strtolower( $taxonomy_object->labels->name );
    			$taxonomy_terms = get_terms( $single_taxonomy );
    			if(count($taxonomy_terms) > 0) {
    				echo "<select name='$single_taxonomy' id='$single_taxonomy' class='postform'>";
    				echo "<option value=''>All $taxonomy_name</option>";
    				foreach ($taxonomy_terms as $single_term) {
    					echo '<option value='. $single_term->slug, $current_taxonomy == $single_term->slug ? ' selected="selected"' : '','>' . $single_term->name .' (' . $single_term->count .')</option>'; 
    				}
    				echo "</select>";
    			}
    		}
    	}
    }
     
    add_action( 'restrict_manage_posts', 'sites_posts_taxonomy_filter' );
WeChat