如何看一个站点是不是wordpress创建的

按住键盘F12

打开网页的源码,我们查找一下是不是有wp-content文字
有这个文字的基本都是wordpress程序创建的网站,因为wp-content是wordpress建站程序的一个文件夹,主题和插件都放在这里里面。

 

发布日期:
分类:Wordpress

wordpress去除主题function经常用到

//WordPress后台右下角版本显示替换
function change_update_link() {
return ‘www.keryi.com’;
}
add_filter( ‘update_footer’, ‘change_update_link’, 9999);

function bzg_remove_loginlogo() {
echo ‘<style>#login > h1 a {background: none;}</style>’;
}
add_action(‘login_head’, ‘bzg_remove_loginlogo’);

function bzg_remove_help() {
get_current_screen()->remove_help_tabs();
}
add_action(‘admin_head’, ‘bzg_remove_help’);

function bzg_remove_dashboard_widgets() {
global $wp_meta_boxes;
//删除 “活动” 模块
unset($wp_meta_boxes[‘dashboard’][‘normal’][‘core’][‘dashboard_activity’]);
//删除 “WordPress 新闻” 模块
unset($wp_meta_boxes[‘dashboard’][‘side’][‘core’][‘dashboard_primary’]);
}
add_action(‘wp_dashboard_setup’, ‘bzg_remove_dashboard_widgets’ );

function footerText () {
return ”;
}
add_filter(‘admin_footer_text’, ‘footerText’, 9999);

function annointed_admin_bar_remove() {
global $wp_admin_bar;
$wp_admin_bar->remove_menu(‘wp-logo’);
}
add_action(‘wp_before_admin_bar_render’, ‘annointed_admin_bar_remove’, 0);

function remove_dashboard_meta() {
remove_meta_box( ‘dashboard_incoming_links’, ‘dashboard’, ‘normal’ );
remove_meta_box( ‘dashboard_plugins’, ‘dashboard’, ‘normal’ );
remove_meta_box( ‘dashboard_primary’, ‘dashboard’, ‘side’ );
remove_meta_box( ‘dashboard_secondary’, ‘dashboard’, ‘normal’ );
remove_meta_box( ‘dashboard_quick_press’, ‘dashboard’, ‘side’ );
remove_meta_box( ‘dashboard_recent_drafts’, ‘dashboard’, ‘side’ );
remove_meta_box( ‘dashboard_recent_comments’, ‘dashboard’, ‘normal’ );
remove_meta_box( ‘dashboard_right_now’, ‘dashboard’, ‘normal’ );
remove_meta_box( ‘dashboard_activity’, ‘dashboard’, ‘normal’);//since 3.8
}
add_action( ‘admin_init’, ‘remove_dashboard_meta’ );

function customize_app_password_availability( $available, $user ) {
if ( ! user_can( $user, ‘manage_options’ ) ) {
$available = false;
}

return $available;
}

add_filter( ‘wp_is_application_passwords_available_for_user’, ‘customize_app_password_availability’, 10, 2 );

 

 

 

发布日期:
分类:Wordpress

WordPress实现登录可见评论模块

WordPress正常可以设置登录发表评论,但不登录也可以正常看到留言评论内容,最近有用户说接到通知个人备案的网站不允许有评论互动功能,虽然我没接到过通知,但可以简单修改一下模板,让主题评论模块只有在登录的状态下可见。

WordPress 登录可见评论模块WordPress 登录可见评论模块

这里我们要用到WordPress判断是否登录的函数:is_user_logged_in()

用判断函数把评论模块包裹起来就行了。

以WordPress默认主题Twenty Seventeen为例,打开主题正文模板文件single.php,找到类似的:

if ( comments_open() || get_comments_number() ) :
comments_template();
endif;

修改为:

if ( is_user_logged_in()){
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
}

之后,只有登录的状态下才能看见评论模块及评论内容。

其它主题方法类似,比如:

<?php if ( is_user_logged_in()){ ?>
<?php if ( comments_open() || get_comments_number() ) : ?>
<?php comments_template( '', true ); ?>
<?php endif; ?>
<?php } ?>

以上就是WordPress实现登录可见评论模块的详细内容,更多请关注本站其它相关文章!

发布日期:
分类:Wordpress

怎么修改WordPress后台文章列表每页文章数量

使用WordPress建网站的站长都知道,WordPress后台默认情况,文章列表是每页20篇,如果想批量删除文章时,每次最多只能删除20篇文章。

其实我们可以通过修改代码来实现WordPress后台文章列表每页文章数量为自定义数量。方法如下:

打开wp-admin/includes/post.php

搜索:

$posts_per_page = 20;

大约在1053行,把20修改为你需要的数字 ,比如50,或者100,不要修改太高。太高的话,显示的是非常慢的。

怎么修改WordPress后台文章列表每页文章数量

老版本的wordpress修改方式如下:
1. 打开wp-admin/includes/post.php
2. 找到下面这一句

wp(“post_type=post&what_to_show=posts$post_status_q&posts_per_page=15&order=$order&orderby=$orderby”);

把15改成你想输出的文章数即可。

 

来源:https://www.xuewangzhan.net/wpbbs/27777.html

发布日期:
分类:Wordpress

让WordPress 自动设置文章第一张图片为特色图像

WordPress的特色图像是一个很实用的功能,为每篇文章增加一个特色图像,可以使blog各个部分都更生动。比如首页每篇文章都有自己的缩略图,相关文章中用缩略图告诉用户这些文章的主题,或者在侧栏加一个特色文章功能,显示文章特色图像。

这里有一段很实用的代码,可以自动将文章中的第一张图片设置为特色图像,如果你手动设置了特色图像,可以覆盖这段代码。将下面的代码丢到当前主题的functions.php里,以后就不用担心忘记设置特色图像了。


/* ------------------------------------------------------------------------- *
* 自动文章第一个图片为特色图片
/* ------------------------------------------------------------------------- */
function autoset_featured_image(){
global $post;
$already_has_thumb = has_post_thumbnail($post->ID);
if (!$already_has_thumb){
$attached_image = get_children("post_parent=$post->ID&post_type=attachment&post_mime_type=image&numberposts=1");
if ($attached_image){
foreach ($attached_image as $attachment_id => $attachment) {
set_post_thumbnail($post->ID, $attachment_id);
}
}
}
}
add_action('the_post', 'autoset_featured_image');
add_action('save_post', 'autoset_featured_image');
add_action('draft_to_publish', 'autoset_featured_image');
add_action('new_to_publish', 'autoset_featured_image');
add_action('pending_to_publish', 'autoset_featured_image');
add_action('future_to_publish', 'autoset_featured_image');

发布日期:
分类:Wordpress

WordPress 5.6 REST API 应用程序密码禁用

WordPress 5.6 正式引入 REST API 身份验证和应用程序密码功能,据说可以让第三方应用无缝并且安全地连接到用户的网站。于是考虑要不要整合到小程序授权登录上,通过搜索引擎查找了相关内容,查询了 WordPress 相关开发文档,如果想要类似于 OAuth 2 授权功能,应用程序密码不支持此功能,据说也没有计划。如此一来,似乎这个应用程序密码功能并不太适合小程序开发。

应用程序密码

既然不太适合小程序功能,在没有开发 App 的需求情况下,可以考虑禁用此功能。

默认情况下,通过 SSL / HTTPS 服务的站点上的所有用户都可以使用应用程序密码。可以使用 wp_is_application_passwords_available 和 wp_is_application_passwords_available_for_user 过滤器对此进行自定义。

例如,要完全禁用应用程序密码,可以将以下代码加入主题模板函数 functions.php 中:


add_filter( 'wp_is_application_passwords_available', '__return_false' );

(已经将此禁用功能加入 WordPress 后台优化加速插件)

如果你的网站没有启用 SSL,正常情况下,HTTP 访问是不会出现应用程序密码设置选项。如果你想要强制应用程序密码可用,可以将以下代码加入主题模板函数 functions.php 中:


add_filter( 'wp_is_application_passwords_available', '__return_true' );

如果你想限制某些用户可以使用 REST API 应用程序密码功能,可以将以下代码加入主题模板函数 functions.php 中:


function customize_app_password_availability( $available, $user ) {
    if ( ! user_can( $user, 'manage_options' ) ) {
        $available = false;
    }
 
    return $available;
}
 
add_filter( 'wp_is_application_passwords_available_for_user', 'customize_app_password_availability', 10, 2 );
发布日期:
分类:Wordpress

WordPress去除后台标题中的后缀!

WordPress后台标题(title)默认后缀显示-WordPress,如果想隐藏这个后缀,可以将下面代码添加到当前主题functions.php中,即可删除这个后缀:

1.去除后台标题中的“- WordPress

  1. // 去除后台标题中的“—— WordPress”
  2. add_filter(‘admin_title’, ‘zm_custom_admin_title’, 10, 2);
  3. function zm_custom_admin_title($admin_title, $title){
  4. return $title.‘ ‹ ‘.get_bloginfo(‘name’);
  5. }

2.去除登录标题中的“- WordPress”PS:隐藏后台其它明显与WordPress相关的字样和图标

  1. // 隐藏后台标题中的“WordPress”
  2. add_filter(‘login_title’, ‘zm_custom_login_title’, 10, 2);
  3. function zm_custom_login_title($login_title, $title){
  4. return $title.‘ ‹ ‘.get_bloginfo(‘name’);
  5. }

3.隐藏后台左上角WordPress标志

  1. // 隐藏左上角WordPress标志
  2. function hidden_admin_bar_remove() {
  3. global $wp_admin_bar;
  4. $wp_admin_bar->remove_menu(‘wp-logo’);
  5. }
  6. add_action(‘wp_before_admin_bar_render’, ‘hidden_admin_bar_remove’, 0);

4.屏蔽后台页脚WordPress版本信息

  1. // 屏蔽后台页脚WordPress版本信息
  2. function change_footer_admin () {return ;}
  3. add_filter(‘admin_footer_text’, ‘change_footer_admin’, 9999);
  4. function change_footer_version() {return ;}
  5. add_filter( ‘update_footer’, ‘change_footer_version’, 9999);

5.移除WordPress仪表盘中的项目

  1. function remove_dashboard_meta() {
  2. remove_meta_box( ‘dashboard_incoming_links’, ‘dashboard’, ‘normal’ );
  3. remove_meta_box( ‘dashboard_plugins’, ‘dashboard’, ‘normal’ );
  4. remove_meta_box( ‘dashboard_primary’, ‘dashboard’, ‘side’ );
  5. remove_meta_box( ‘dashboard_secondary’, ‘dashboard’, ‘normal’ );
  6. remove_meta_box( ‘dashboard_quick_press’, ‘dashboard’, ‘side’ );
  7. remove_meta_box( ‘dashboard_recent_drafts’, ‘dashboard’, ‘side’ );
  8. remove_meta_box( ‘dashboard_recent_comments’, ‘dashboard’, ‘normal’ );
  9. remove_meta_box( ‘dashboard_right_now’, ‘dashboard’, ‘normal’ );
  10. remove_meta_box( ‘dashboard_activity’, ‘dashboard’, ‘normal’);//since 3.8
  11. }
  12. add_action( ‘admin_init’, ‘remove_dashboard_meta’ );
发布日期:
分类:Wordpress

WordPress去除后台标识的信息教程

wordpress的后台会有很多wordpress的信息,比如后台的title会显示一个wordpress的后缀,后台的顶部工具条会出现一个wordpress的图标,这些内容本身没有什么影响,但是如果我们在某些时候需要去除掉wordpress的这些信息的话,我们可以使用如下方法将这些带有wordpress标识的信息去除掉。

那么下面我们就来说说如何去除掉这些信息。

去除掉wordpress顶部工具条的“关于wordpress”图标
wordpress的工具条上,最左侧有一个wordpress的小图标,鼠标放上去之后会显示“关于wordpress”、wordpress.org等信息,我们可以使用如下代码将这个信息隐藏掉。

一般有2种方法进行隐藏,其一是直接修改wordpress的核心代码,将此信息隐藏,但是这样做等到我们对wordpress进行更新之后,就会被覆盖掉,又要重新进行修改,比较不实用,因此这个方法我们不做说明。

我们从我们所使用的wordpress主题进行添加代码,将此信息隐藏,这样就非常方便了,将如下代码添加进入你的主题function.php最后一行?>之前(若没有?> 那么直接放置在最后即可,WEB主题公园的付费用户请粘贴到function/function_z.php或者widget.php即可)

  1. function annointed_admin_bar_remove() {
  2. global $wp_admin_bar;
  3. $wp_admin_bar->remove_menu(‘wp-logo’);
  4. }
  5. add_action(‘wp_before_admin_bar_render’, ‘annointed_admin_bar_remove’, 0);

去除掉WP后台的wordpress title 后缀
我们在进入wordpress后台之后,可以在网站后台的title出现一个wordpress的后缀,如WEB主题公园会显示:“仪表盘-WEB主题公园 -WordPress”

如果我们想要删除这个后缀也是可以的,将如下代码粘贴(和上面所说的的方法一样):

  1. add_filter(‘admin_title’, ‘wpdx_custom_admin_title’, 10, 2);
  2. function wpdx_custom_admin_title($admin_title, $title){
  3. return $title.‘ &lsaquo; ‘.get_bloginfo(‘name’);
  4. }

这样我们就能够去除掉这个信息了。

一般来说,wordpress的后台就这两个wordpress的信息,去除掉基本上就没有明显的wordpress信息出现在后台上了,如果你需要的话 可以使用上面介绍的方法进行去除。

发布日期:
分类:Wordpress

wordpress主题_2020年使用的15个顶级WordPress主题

wordpress主题_2020年使用的15个顶级WordPress主题

wordpress主题

This sponsored article was created by our content partner, BAW Media. Thank you for supporting the partners who make SitePoint possible.

这篇赞助文章是由我们的内容合作伙伴BAW Media创建的。 感谢您支持使SitePoint成为可能的合作伙伴。

Overworked, overstressed, and flat out fed up with starting every website design from scratch? Here are some WordPress theme solutions you’ll appreciate.

过度劳累,压力重重,平淡无聊,无从下手开始每个网站设计? 这是您将欣赏的一些WordPress主题解决方案。

Maybe you need to switch to an easy-to-use theme — a WordPress theme that’s crazy-fast and gives you reliable performance may be your cup of tea.

也许您需要切换到易于使用的主题-疯狂的WordPress主题,为您提供可靠的性能,这可能就是您的最佳选择。

Tired of having to build your websites from scratch? It’s totally unnecessary unless for some reason you absolutely want to.

厌倦了从头开始构建您的网站? 除非出于某些原因,否则这是完全没有必要的。

Before you blame yourself for the situation you find yourself in, consider this: maybe it’s the tools you’re using. You may be trying to build a house without the use of power tools, scaffolding, or helpful aids.

在为遇到的情况指责自己之前,请考虑以下问题:也许这是您使用的工具。 您可能试图在不使用电动工具,脚手架或辅助工具的情况下盖房子。

One of the following 15 top WordPress themes should prove to be the solution to your problem. In fact, more than one of them could probably serve quite nicely.

以下15个WordPress顶级主题之一应被证明是解决您的问题的方法。 实际上,其中一个以上可能会很好地发挥作用。

Grab a cup of coffee and let’s get started.

喝杯咖啡,让我们开始吧。

1. BeTheme:响应式,多功能WordPress主题 (1. BeTheme: Responsive, Multi-purpose WordPress Theme)

 

 

This biggest-of-them-all multipurpose WordPress theme can’t be beaten in terms of the huge array of “power” tools and design elements it places at your disposal. BeTheme is fast and flexible. It’s easy for beginners to work with. If trying to satisfy multiple clients has become more stressful than rewarding, BeTheme has a solution for that as well.

这个最大的多功能WordPress主题在您可以使用的大量“强大”工具和设计元素方面无法被击败。 BeTheme快速而灵活。 对于初学者来说,这很容易。 如果想要满足多个客户的压力比获得奖励的压力更大,BeTheme也可以提供解决方案。

Be’s selection of 500+ customizable, responsive pre-built websites is the highlight and a proven stress reducer. These professionally crafted, pre-built websites cover 30 industry sectors, all the common websites, and an impressive range of business niches.

Be精选了500多个可自定义的响应式预建网站,这是其亮点​​和行之有效的减压方法。 这些经过专业设计,预制的网站涵盖了30个行业领域,所有常见网站以及令人印象深刻的一系列业务领域。

They also have UX features and functionalities built into them, potentially saving you a ton of design time.

它们还具有内置的UX特性和功能,有可能节省大量的设计时间。

  • BeTheme uses the popular Muffin Builder 3 page builder, with WPBakery as an option.

    BeTheme使用流行的Muffin Builder 3页面构建器,并且可以选择WPBakery。

  • There’s a Layouts Configurator if you really want to, or absolutely have to, build a page from scratch.

    如果您确实想要或绝对必须从头开始构建页面,则可以使用Layouts Configurator。

  • It has a Shortcode Generator and a large selection of shortcodes that, together with Be’s drag and drop features, eliminates the need for coding.

    它具有一个短代码生成器和大量的短代码选择,再加上Be的拖放功能,无需进行编码。

  • Be’s powerful Admin Panel provides unmatched flexibility.

    Be强大的管理面板提供了无与伦比的灵活性。

I have purchased 4 of these themes at this point. Love the speed and build of them. Only wish list item would be a way to categorize and tag pages like you can with posts. — sharkyh2o

目前,我已经购买了其中4个主题。 爱他们的速度和建立。 仅希望列表项将是一种对页面进行分类和标记的方法,就像可以使用帖子一样。 — sharkyh2o

Click here and browse Be’s impressive collection of pre-built websites.

单击此处 ,浏览Be令人印象深刻的预建网站集合。

2. 总主题 (2. Total Theme)

 

 

Total is another stress-reducing theme. This flexible and easy-to-use WordPress theme has been around for a while and has amassed a user base of 41,000 happy customers.

道达尔是另一个减轻压力的主题。 这个灵活易用的WordPress主题已经存在了一段时间,并且已经积累了41,000个满意客户的用户群。

  • Total is drag and drop and it doesn’t require coding to build exactly the type of website you have in mind.

    Total是拖放操作,不需要编码即可完全构建您想要的网站类型。

  • Total is also developer friendly thanks to its system of hooks, filters, and snippets.

    借助钩子,过滤器和代码片段系统,Total对开发人员也很友好。

  • There are more than 500 advanced customizing options available, plus 100+ page-builder elements and design modules to work with and 40+ pre-built demos to get any project off to a solid start.

    有500多种高级自定义选项可用,另外还有100多个页面构建器元素和设计模块可以使用,以及40多个预构建的演示使任何项目都可以扎实地开始。

  • You won’t be burdened by third-party plugins either, since this WooCommerce-ready theme is compatible with all WordPress plugins.

    您也不会受到第三方插件的负担,因为这个支持WooCommerce的主题与所有WordPress插件都兼容。

  • Very Friendly

    非常友好

  • Very Simple

    很简单

  • Clean Code

    清洁代码

  • Good Flexibility

    柔韧性好

  • Cool Elements

    酷元素

  • Excelent custom panel

    卓越的自定义面板

  • Good integration with WooCommerce

    与WooCommerce的良好集成

Love this theme, it can do everything I need including shops, in a very good and easy way. — soswebdesign

喜欢这个主题,它可以用一种非常便捷的方式来完成我需要的一切,包括商店。 — soswebdesign

Click here to discover if Total is the solution you’ve been looking for.

单击此处查找Total是否是您一直在寻找的解决方案。

3. Avada (3. Avada)

 

 

If you choose a best-selling theme, chances are it’s going to relieve rather than add to any stress you may be encountering. Avada is such a theme.

如果您选择最畅销的主题,那么它很有可能会缓解而不是增加您可能遇到的压力。 Avada就是这样一个主题。

  • Its Dynamic Content System provides unmatched flexibility.

    其动态内容系统提供了无与伦比的灵活性。

  • Avada integrates totally with WooCommerce and includes product design drag and drop capabilities.

    Avada与WooCommerce完全集成,并包括产品设计拖放功能。

  • 55+ pre-built websites are included to get you off to a fast start.

    包括55个以上的预建网站,可帮助您快速入门。

Great theme! As my first WordPress theme, it offers many options and continues to improve! — nwilger

很棒的主题! 作为我的第一个WordPress主题,它提供了很多选择,并且会不断改进! — nwilger

Click here to find out more about this best-seller.

单击此处以了解有关此畅销书的更多信息。

4. TheGem:创意,多功能,高性能WordPress主题 (4. TheGem: Creative, Multi-Purpose, High-Performance WordPress Theme)

 

 

Featuring the most beautiful designs for WordPress is what many web designers will tell you about TheGem. What really gets them excited, however, are the tools that come with the package.

许多网页设计师会向您介绍有关WordPress的最精美设计的有关TheGem。 但是,真正使他们兴奋的是软件包随附的工具。

Those same designers will tell you that TheGem is the ultimate WordPress toolbox. To name but just a few of the goodies, you’ll find:

那些设计师会告诉您TheGem是终极的WordPress工具箱。 仅列举一些好东西,您会发现:

  • plenty of pre-built, one-click installable websites

    大量预建,一键式可安装网站

  • over 400 modern and trendy design templates

    超过400种现代时尚设计模板

  • a ready-to-go fashion store

    一家现成的时装店

Great theme and great service. — bepreoo

很棒的主题和一流的服务。 — bepreoo

Your very own ultimate toolbox is just a click or two away.

您自己的终极工具箱只需单击两下即可 。

5. 取消编码:创造性的多用途WordPress主题 (5. Uncode: Creative, Multiuse WordPress Theme)

 

 

Bloggers, freelancers, and creatives of all types, plus small businesses and agencies, will benefit from making this ThemeForest bestseller with its 60K+ sales their theme of choice. This is doubly true if you need to create a portfolio or magazine-style website or any type or style of a page.

各种主题的博客,自由职业者和创意者,再加上小型企业和代理商,都将受益于这个主题森林的畅销书,其60K +以上的销量成为其主题。 如果您需要创建投资组合或杂志风格的网站或任何类型或样式的页面,则这是双重事实。

Features include:

功能包括:

  • a powerful front-end editor

    强大的前端编辑器

  • adaptive image and advanced grid systems

    自适应图像和高级网格系统

  • WooCommerce compatibility and single product design and display features.

    WooCommerce兼容性以及单一产品设计和显示功能。

The star of the show is Uncode’s showcase of user-created websites. They tell a story of what Uncode could do for you, plus they are a source of inspiration.

展览的明星是Uncode展示的用户创建网站。 他们讲述了Uncode可以为您做什么的故事,并且它们是灵感的来源。

Nice code, good support, design possibilities are endless. — zoutmedia

好的代码,良好的支持,无限的设计可能性。 — zoutmedia

Visit Uncode and browse its showcase of user-built websites.

访问Uncode并浏览其用户构建网站的展示。

6. Houzez:高度可定制的房地产WordPress主题 (6. Houzez: Highly Customizable Real Estate WordPress Theme)

 

 

There are some website types that a multi-purpose theme simply can’t help you with — usually because of unique and special features that are required. For the realestate sector, as an example, using a theme like Houzez is a must. Houzez’ unique functionalities include:

某些网站类型的多功能主题根本无法为您提供帮助-通常是由于所需的独特功能和特殊功能。 例如,对于房地产行业,必须使用像Houzez这样的主题。 Houzez的独特功能包括:

  • advanced property searching

    高级物业搜索

  • flexible property listings formatting

    灵活的属性列表格式

  • a property management system

    物业管理系统

In addition, this drag and drop theme can easily be customized to match a realtor’s business model.

此外,可以轻松定制此拖放主题以匹配房地产经纪人的业务模型。

I really love the function and the appearance of the theme. — stuffmartusa2

我真的很喜欢主题的功能和外观。 — stuffmartusa2

If you happen to have a realtor for a client, look no further.

如果你碰巧有一个客户一个房地产经纪人, 不要再观望 。

7. XStore:响应式多功能WooCommerce WordPress主题 (7. XStore: Responsive Multi-Purpose WooCommerce WordPress Theme)

 

 

There’s really no need to start designing an online store from scratch if you have a ready-to-go shop you can tweak to get what you want. What if you have 80 of those ready-to-go stores? That’s what XStore gives you, together with a host of demos for various products, $300 worth of premium plugins, and a powerful, single-product page builder.

如果您有一家现成的商店,您可以进行调整以获得所需的东西,那么实际上就不需要从头开始设计在线商店。 如果您有80家这些现成的商店怎么办? 这就是XStore给您的,以及各种产品的大量演示,价值300美元的高级插件以及功能强大的单产品页面构建器。

How’s that for streamlining your workflow?

如何简化您的工作流程?

As always, a 5 star! I bought this theme the third or fourth time so far… really loving it. The new update from 6.0 is awesome. — edvin33

一如既往的5星! 到目前为止,我第三次或第四次购买了这个主题……真的很喜欢它。 从6.0开始的新更新很棒。 — edvin33

Click here and browse the 80 ready-to-go stores.

单击此处 ,浏览80家现成的商店。

8. Typer:具有多作者发布功能的惊人主题 (8. Typer: Amazing Theme with Multi Author Publishing Features)

 

 

Looking for a theme that meets the special needs of publishers or bloggers? With Typer you can create a publishing WordPress site that will accommodate multiple authors.

寻找符合发布者或博客作者特殊需求的主题? 使用Typer,您可以创建一个可容纳多个作者的WordPress发布站点。

Typer’s 100% Gutenberg optimization gives you the support you want to publish your blog posts, while the Elementor page builder makes it a snap to create attractive, professional-looking landing pages.

Typer的100%Gutenberg优化为您提供了要发布博客文章的支持,而Elementor页面构建器使您可以轻松创建具有吸引力,外观专业的着陆页。

  • No coding knowledge is needed

    无需编码知识

  • Typer is optimized for speed

    打字机针对速度进行了优化

  • Typer gives you unlimited Header styles and unique page and post options

    Typer为您提供无限的页眉样式以及独特的页面和帖子选项

You can also rely on premium support should you ever need it.

如果需要,您还可以依靠高级支持。

Amazing design – one of the best looking minimal themes I’ve found recently. And, support has been incredible. — bloggingwizard

惊人的设计-我最近发现的外观最好的最小主题之一。 而且,支持是不可思议的。 — bloggingwizard

Click here if building a publishing site is your objective.

如果您的目标是建立发布站点,请单击此处 。

9.  (9. Bridge)

 

 

If your method of picking a theme that perfectly meets your needs is to put on a blindfold and you happen to pick Bridge, you’ll have a winner! Bridge is a perfect theme for just about anyone, be it a beginner or an established pro. This best-selling creative theme that serves 120,000 happy users offers:

如果您选择一个完全满足您需求的主题的方法是蒙上眼睛,而您恰巧选择了Bridge,那么您将获得胜利! Bridge是几乎任何人的理想主题,无论是初学者还是老手。 这个热销的创意主题可以为120,000名满意的用户提供服务,它可以:

  • open-ended flexibility and customizability

    开放式的灵活性和可定制性

  • an immense collection of design elements and design aids

    大量的设计元素和设计辅助工具

  • 420+ pre-made websites

    420多个预制网站

  • sliders and plugins, including WooCommerce and the choice between two powerful page builders — WPBakery and Elementor.

    滑块和插件,包括WooCommerce以及两个强大的页面构建器之间的选择-WPBakery和Elementor。

I’ve bought some themes on ThemeForest, but this is the one that I prefer. It’s incredible. — joaebobe

我已经在ThemeForest上购买了一些主题,但这是我更喜欢的主题。 太不可思议了 — joaebobe

Click here to learn more.

单击此处了解更多信息。

10. Brook:多功能WordPress主题 (10. Brook: Multipurpose Creative WordPress Theme)

 

 

The testimonial says it all. Brook, with its impressive design tools and features, is a web designer’s dream theme. The package comes with pre-made templates galore, a selection of premium site-building plugins, design elements, and shortcodes.

鉴定书说明了一切。 Brook具有令人印象深刻的设计工具和功能,是Web设计师的梦想主题。 该软件包随附了丰富的预制模板,精选的高级站点构建插件,设计元素和简码。

You’ll also quickly find that Brook is:

您还将很快发现Brook是:

  • SEO friendly

    SEO友好

  • superfast at loading

    加载超快

  • easy to use and easily customizable

    易于使用和易于定制

A library of support tutorials is there as well to help you along.

支持教程库也可以帮助您。

There are many positives on this template, from code quality to customization ease, to customer support! HIGHLY RECOMMENDED!!! — rodeospot

从代码质量到易于定制,再到客户支持,此模板都有许多优点! 强烈推荐!!! —牛仔竞技场

Visit the site and check out the video tutorials to learn more.

访问该网站并查看视频教程以了解更多信息。

11. TheFox:响应式多功能WordPress主题 (11. TheFox: Responsive Multi-Purpose WordPress Theme)

 

 

What makes a WordPress theme smart, and clever like a fox? A talented author or design team obviously has something to do with it, but the main reason is attention to detail. TheFox is smart because its designers attended to the minutest of details to achieve what they were after — a multi-purpose theme with a solid track record and a whole host of satisfied users.

是什么使WordPress主题聪明,像狐狸一样聪明? 一个有才华的作者或设计团队显然与此有关,但是主要原因是注重细节。 TheFox之所以精明,是因为其设计人员会注意最细微的细节,以实现他们追求的目标–一个具有可靠记录和大量满意用户的多功能主题。

A very powerful theme with incredible flexibility. Their support is always helpful as well on the occasions I need help with something on the theme. — logo24

一个非常强大的主题,具有令人难以置信的灵活性。 在我需要有关主题方面的帮助时,他们的支持也总是很有帮助。 — logo24

Click here to learn more about the smartest WordPress theme of all.

单击此处以了解有关所有最聪明的WordPress主题的更多信息。

12. Hongo:现代和多用途WooCommerce WordPress主题 (12. Hongo: Modern & Multipurpose WooCommerce WordPress Theme)

 

 

If you’re planning to build a WooCommerce store, a company website, or even a blogging site, Hongo could offer precisely what you need. This relatively new WordPress theme sports a modern, refreshing look. In the package you’ll find:

如果您打算建立WooCommerce商店,公司网站甚至博客网站,Hongo可以提供您所需要的。 这个相对较新的WordPress主题具有现代感和清新感。 在软件包中,您将找到:

  • a whole host of demos, design elements, and templates

    大量的演示,设计元素和模板

  • the popular WPBakery page builder

    流行的WPBakery页面构建器

  • custom shortcodes

    自定义简码

  • one-click demo import.

    一键式演示导入。

One of the best themes, simple to customize and very functional. Well done. — creopolitan

最好的主题之一,易于定制且功能强大。 做得好。 — creopolitan

Take a closer look at Hongo to see how it can help you.

仔细看看Hongo ,看看它如何为您提供帮助。

13. Pofo:创意组合,博客和电子商务WordPress主题 (13. Pofo: Creative Portfolio, Blog and eCommerce WordPress Theme)

 

 

Pofo is an excellent choice for anyone needing to build and launch an engaging, award-winning online portfolio. It’s no secret that a good portfolio design can be a key factor leading to a business’s success.

对于需要构建和发布引人入胜,屡获殊荣的在线产品组合的任何人来说,Pofo都是一个绝佳选择。 好的投资组合设计可以成为导致企业成功的关键因素,这已不是什么秘密。

  • Pofo is blazing fast and fully responsive

    Pofo在快速而全面地响应

  • Pofo is 100% Gutenberg compatible

    Pofo与古腾堡100%兼容

  • You’ll find an impressive array of home and demo pages, design elements, and premium plugins

    您会发现大量令人印象深刻的主页和演示页,设计元素和高级插件

  • The package also features the WPBakery page builder, Revolution Slider, and plenty of online documentation.

    该软件包还包含WPBakery页面构建器,Revolution Slider和大量在线文档。

I purchased this template to create my online portfolio. So far, it has been amazing! The design is very modern and looks great across all platforms. But most of all, I’m not an expert at web design and their customer support has been phenomenal. — meganyam

我购买了此模板来创建我的在线投资组合。 到目前为止,真是太神奇了! 该设计非常现代,在所有平台上看起来都很棒。 但最重要的是,我不是Web设计专家,他们的客户支持非常出色。 — ny

Click here to find out more about this premium portfolio website builder.

单击此处以了解有关此高级投资组合网站构建器的更多信息。

14. 模式 (14. Schema)

 

 

Schema is not your ordinary multipurpose theme. While its many features are similar to what is found in most premium themes of this type, there’s one significant difference that can make investing in Schema a wise decision. It’s Schema’s unique SEO functionality, which:

模式不是您的普通多用途主题。 尽管它的许多功能与大多数此类高级主题中的功能相似,但有一个重大差异可以使对Schema的投资成为明智的决定。 这是Schema独特的SEO功能,该功能:

  • knows what search engines are looking for

    知道搜索引擎在寻找什么

  • guides the search engines through your site

    引导搜索引擎访问您的网站

  • checks for clean code and checks page load time.

    检查干净的代码并检查页面加载时间。

All in the interest of improving your site’s ranking.

所有这些都是为了提高您网站的排名。

Easy to customize and support is great. — fmueller01

易于定制且支持很棒。 — fmueller01

SEO design problems? Check Schema out.

SEO设计有问题吗? 签出纲要 。

15. Leadinjection:WordPress登陆页面主题 (15. Leadinjection: WordPress Landing Page Theme)

 

 

While any web designer or developer can make good use of this theme, Leadinjection is an especially valuable tool to have if you’re in charge of maintaining several websites.

尽管任何网页设计师或开发人员都可以充分利用此主题,但是如果您负责维护多个网站,Leadinjection是一个特别有价值的工具。

This is because Leadinjection makes the typically tricky problem of adding a new page to an operational site easy. Leadinjection is also WordPress multisite compatible, WPML and translation ready, and conversion focused.

这是因为Leadinjection使得向操作站点添加新页面这一通常棘手的问题变得容易。 Leadinjection还兼容WordPress多站点,WPML和翻译就绪,并且着眼于转换。

Fast Support. … I could not even finish my beer. … Love the backend and I look forward to more business with this company. — brianskolnick

快速支持。 …我什至无法喝完啤酒。 …热爱后端,我期待与该公司开展更多业务。 — brianskolnick

Add this useful tool to your designer’s toolbox.

将此有用的工具添加到设计师的工具箱中。

结语 (Wrap Up)

Although the emphasis of this article may seem to be on multipurpose themes, most of those listed have one or more unique features. These features could prove to be especially valuable to you. If you’re a beginning designer, a multipurpose theme is usually a best bet.

尽管本文的重点似乎是多用途主题,但列出的大多数主题都具有一个或多个独特功能。 这些功能可能对您特别有价值。 如果您是新手设计师,那么多用途主题通常是最好的选择。

If you’re more advanced or have a number of clients to satisfy, you may want to look more closely at which each theme has to offer that the others may not. In any event, we hope you’ve found something that will ease your workload and eliminate any stress you’re experiencing.

如果您更高级或需要满足许多客户,则可能需要更仔细地研究每个主题必须提供的主题,而其他主题则不能。 无论如何,我们希望您找到了可以减轻工作量并消除任何压力的东西。

Please share this article with a fellow designer or on social media. We’d love to hear about the results of your shopping experience.

请与其他设计师或社交媒体分享本文。 我们希望知道您购物体验的结果。

发布日期:
分类:Wordpress

wordpress修改或删除后台底部的”感谢使用WordPress进行创作。”文字

WordPress后台底部有一行小字:“感谢使用WordPress进行创作。”,表明这是使用WordPress搭建的一个网站,如果不想显示该文字或想修改为其它文字,可以使用下面的代码移除。

编辑当前主题的functions.php文件,在第一行<?php下面添加以下代码(二选一):

1、修改文字

1
2
3
4
function footerText () {
	return '这是<a href="http://www.thefox.cn/">WordPress主题站</a>后台,使用的是<a href="http://wordpress.org/">WordPress</a>程序';
}
add_filter('admin_footer_text', 'footerText', 9999);

2、删除文字

1
2
3
4
function footerText () {
	return '';
}
add_filter('admin_footer_text', 'footerText', 9999);
发布日期:
分类:Wordpress