WordPress代码教学

wordpress 恢复旧版 小工具 Classic Widgets 恢复旧版编辑器 disable Gutenberg 禁用古腾堡

wordpress 恢复旧版 小工具 Classic Widgets 恢复旧版编辑器 disable Gutenberg 禁用古腾堡

有很多人大概不习惯新版的小工具和编辑器

wordpress 恢复旧版 小工具 Classic Widgets 恢复旧版编辑器 disable Gutenberg 禁用古腾堡

可以打开主题functions.php

在适当的位置插入


  1. //Classic Widgets  恢复旧版小工具  
  2. function example_theme_support() {   
  3.     remove_theme_support( 'widgets-block-editor' );   
  4. }   
  5. add_action( 'after_setup_theme', 'example_theme_support' );   
  6.   
  7.   
  8. // disable Gutenberg 禁用古腾堡 恢复旧版编辑器  
  9. add_filter('use_block_editor_for_post', '__return_false', 10);   

 

网页设计技巧,为访问者和特定角色启用特定的CSS代码

在网页设计

如何为访问者和特定会员角色启用特定的CSS代码

可以使用wp_head挂勾(hook)功能,并检查您目前的会员角色

在HTML标头上添加自定义CSS

 


  1. add_action('wp_head', 'add_css_of_user_role');   
  2. function add_css_of_user_role()   
  3. {    
  4.     /*Check Current User is Login*/  
  5.     if ( is_user_logged_in() )    
  6.     {     
  7.        $user = wp_get_current_user();   
  8.        /*Check Current User Role*/  
  9.        if (in_array('c_business', $user->roles)) { ?>   
  10.   
  11.                
  12.   
  13.     
  14.   
  15.     }   
  16. }  

这里面的c_business,可以换成你的角色代码。

所有文章

如何在WordPress中创建自定义用户角色?

如何在WordPress中创建自定义用户角色?

您是否要允许WordPress网站中权限较小的人执行某些特定任务?WordPress为您提供了在网站上包含此惊人功能的选项。除了预定义的用户角色,您还可以为某些任务创建自定义用户角色,并允许他在有限的领导下访问您的仪表板。

在本文中,我们将介绍如何在网站中创建自定义用户角色以及如何将其分配给用户。

在WordPress中创建自定义用户角色的代码


  1. add_role(   
  2.     'c_business',   
  3.     __( '企业主' ),   
  4.     array(   
  5.         'read'         => true,  // true允许此功能  
  6.     )   
  7. );  

用户角色是WordPress的内置功能,可帮助设置用户可以在您的网站上执行或不执行的任务。WordPress中有六个已定义的用户角色。

WordPress用户角色的权限参考

  1. 'read' => true// true允许此功能  
  2. 'edit_posts' => true//允许用户编辑自己的帖子  
  3. 'edit_pages' => true//允许用户编辑页面  
  4. 'edit_others_posts' => true//允许用户编辑其他帖子,而不仅仅是他们自己的帖子  
  5. 'create_posts' => true//允许用户创建新帖子  
  6. 'manage_categories' => true//允许用户管理帖子类别  
  7. 'publish_posts' => true//允许用户发布,否则发布保持草稿模式  
  8. 'edit_themes'=> false// false拒绝此功能。用户无法编辑您的主题  
  9. 'edit_themes' => false//用户无法添加新插件  
  10. 'update_plugin' => false//用户无法更新任何插件  
  11. 'update_core' => false  //用户无法执行核心更新  
如何在Revolution Slider 6 WordPress插件中更改字型字体?

如何在Revolution Slider 6 WordPress插件中更改字型字体?

新版Revolution Slider 6 对中文语系不太友善,字体只能选择google字体。

没办法像以前自定义 字体,像是定义Microsoft JhengHei或者Microsoft YaHei等,中文字型字体。

所以我们要用这个方法设定

 


  1. rs-layer:not(.rs-wtbindex), .rs-layer:not(.rs-wtbindex), rs-alyer :not(.rs-wtbindex), .rs-layer :not(.rs-wtbindex) { outline: none !important; font-family: "Microsoft JhengHei" !important;   
  2. };  

在字体区块选择Custom CSS

如下图

如何在Revolution Slider 6 WordPress插件中更改字型字体?

wordpress教学,如何更改WordPress预设的上传路径

wordpress教学,如何更改WordPress预设的上传路径

进到options.php,例如「 http://你的网址/wp/wp-admin/options.php」(请视您真实的管理目录更改)
进入到options.php会看到超多的资料可以更改,绝对不要乱改!
我们搜寻「upload_path」和「upload_url_path」 将其更改为「要上传的路径」和「真实网址」就行了。
范例:「/home/adanaa.com/public_html/img」和「https://adanaa.com/a>」(这是已指定二级域名的状况下)
upload_path请进到您的虚拟主机看一下你的真实路径

woocommerce改变栏位名称

woocommerce改变栏位名称

我们今天想把地址的栏位名称,改为更具体的名字:详细收件地址,一样找到 woocommerce_billing_fields,指定栏位名billing_address_1,把它的属性 label 改为「行动电话」,记得因为名称是字串的形式,一定要加引号,而必填属性为布林值,所以 true 或 false 不用加引号

改变栏位名称


  1. /**改变栏位名称**/  
  2.   
  3. add_filter( 'woocommerce_billing_fields', 'custom_billing_phone_label' );   
  4. function custom_billing_phone_label($fields) {   
  5. $fields['billing_address_1'] = array(   
  6. 'label'=>"详细收件地址"  
  7. );   
  8. return $fields;   
  9. }  
WooCommerce将金额设置成「100元」以及WooCommerce关闭货币符号隐藏货币符号

WooCommerce将金额设置成「100元」以及WooCommerce关闭货币符号隐藏货币符号

放在你主题的.css里面

可能是style.css

WooCommerce将金额设置成「100元」


  1. /*-- 隐藏原本金额前面的NT$ --*/  
  2. .woocommerce-Price-currencySymbol {   
  3. display: none;   
  4. }   
  5.   
  6. /*-- 增加「元」这个字到金额后面 --*/  
  7. span.woocommerce-Price-amount.amount::after {   
  8. content: '元';   
  9. }   

WooCommerce关闭货币符号

  1. /*-- 隐藏 金额前面的汇率符号 --*/  
  2. .woocommerce-Price-currencySymbol {   
  3. display: none;   
  4. }   
  5.   
  6. .price .woocommerce-Price-currencySymbol {   
  7.         display:none !important;}  

通过设置.htaccess给WordPress站点Leverage browser caching

通过设置.htaccess给WordPress站点Leverage browser caching

透过functions修改 WordPress 网址(URL) 和 网志位址(URL)

打开你主题的functions

将http://example.com/ 修改你的网址,这方法的好处是,你可以透过functions修改。假如从设定>>一般修改的话,

css彩色语法

超好用的css彩色语法

为HTML加入CSS

采用内部样式表(Internal Style Sheet) ,直接在HTML档内写

soe优化,wordpress如何开启ping服务?

wordpress本身就有ping服务功能,我们进行配置就完成啰!
在wordpress后台,设定>写作,如下图

修改wordpress记忆体-最好的方法! Allowed memory size of 50331648 bytes exhausted

wordpress会出现「 Fatal error: Allowed memory size of 50331648 bytes exhausted (tried to allocate 32 bytes) in」就是预设记忆体不足。

那就要增加WordPress的记忆体限制,最好用的方法。

方法、修改default-constants.php

文章新闻滚动窗口小工具-WP News and Scrolling Widgets Pro – WordPress News Plugin

[button size="medium" style="primary" text="观看范例" link="http://demo.wponlinesupport.com/prodemo/pro-blog-and-widgets-plugin-demo/blog-post-with -grid-view/" target=""]
20+ Slider/Carousel Designs20+滑块/旋转木马设计

文章小工具Smart Post Lists Widget WordPress

[button size="medium" style="primary" text="观看范例" link="http://otwthemes.com/demos/smart-post-lists/sidebars/" target=""]
创建帖子列表 - 任何类型根据您从窗口小部件中的窗体中选择的选项构建帖子列表。它类似于SQL查询,但不需要编码知识。

wordpress关闭woocommerce多余的栏位

相信很多人,如果使用woocommerce作为购物车的话
一 定会发觉,有很多栏位,在台湾地区不适用

wordpress代码,让php页面执行wordpress的简码

这个也很重要,wordpress的简码,就是
[XXXXXXX]的东西
你想在php页面执行,读不出来。
所以使用这段代码
  1.   
这里[shortcode here]就是你要替换的简码