!
也想出现在这里? 联系我们
广告位

启用WordPress主题提醒必须使用的插件

作为 WordPress 主题开发者,如果你的主题的某些功能需要借助某些插件才能实现,那你需要提醒主题使用者安装这些插件。在倡萌看来,最合理的提醒方法,就是启用主题后,在后台顶部提醒安装,如下图所示:

我们只需要借助 is_plugin_active() 函数来检测所需的插件是否已安装并启用,如果没有安装就进行提醒。

is_plugin_active() 函数简介

is_plugin_active() 函数是专门用来检测插件是否已经安装并启用的,使用的方法很简单,只需要添加对应的插件的主文件路径即可:

  1. if(!is_plugin_active( 'wordpress-popular-posts/wordpress-popular-posts.php' ))
  2. {
  3. echo '需要显示的内容';
  4. }

上面的代码的作用就是:如果没有启用 WordPress Popular Posts,就显示一段提醒文字。’wordpress-popular-posts/wordpress-popular-posts.php’ 就是 WordPress Popular Posts 插件的主文件的路径。

提示安装必要插件

只需要在主题的 functions.php 中添加类似代码,就可以达到本文配图的效果:

  1. add_action('admin_notices', 'showAdminMessages');
  2. function showAdminMessages()
  3. {
  4. $plugin_messages = array();
  5. include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
  6. // Download the Yoast WordPress SEO plugin
  7. if(!is_plugin_active( 'wordpress-seo/wp-seo.php' ))
  8. {
  9. $plugin_messages[] = 'This theme requires you to install the Yoast WordPress SEO plugin, <a href="http://wordpress.org/extend/plugins/wordpress-seo/" rel="external nofollow" >download it from here</a>.';
  10. }
  11. // Download the Disqus comment system
  12. if(!is_plugin_active( 'disqus-comment-system/disqus.php' ))
  13. {
  14. $plugin_messages[] = 'This theme requires you to install the Disqus comment system plugin, <a href="http://wordpress.org/extend/plugins/disqus-comment-system/" rel="external nofollow" >download it from here</a>.';
  15. }
  16. // Download the WordPress popular posts plugin
  17. if(!is_plugin_active( 'wordpress-popular-posts/wordpress-popular-posts.php' ))
  18. {
  19. $plugin_messages[] = 'This theme requires you to install the WordPress Popular Post plugin, <a href="http://wordpress.org/extend/plugins/wordpress-popular-posts/" rel="external nofollow" >download it from here</a>.';
  20. }
  21. if(count($plugin_messages) > 0)
  22. {
  23. echo '
  24. <div id="message" class="error">';
  25. foreach($plugin_messages as $message)
  26. {
  27. echo '
  28. <strong>'.$message.'</strong>
  29. ';
  30. }
  31. echo '</div>
  32. ';
  33. }
  34. }

给TA打赏
共{{data.count}}人
人已打赏
WordPress教程

代码实现禁止 WordPress 重置密码功能

2023-11-17 15:12:14

WordPress教程

WordPress限制每日邮箱发送数量

2023-11-18 13:32:13

下载说明

  • 1、微码盒所提供的压缩包若无特别说明,解压密码均为weimahe.com
  • 2、下载后文件若为压缩包格式,请安装7Z软件或者其它压缩软件进行解压;
  • 3、文件比较大的时候,建议使用下载工具进行下载,浏览器下载有时候会自动中断,导致下载错误;
  • 4、资源可能会由于内容问题被和谐,导致下载链接不可用,遇到此问题,请到文章页面进行反馈,以便微码盒及时进行更新;
  • 5、其他下载问题请自行搜索教程,这里不一一讲解。

站长声明

本站大部分下载资源收集于网络,只做学习和交流使用,版权归原作者所有;若为付费资源,请在下载后24小时之内自觉删除;若作商业用途,请到原网站购买;由于未及时购买和付费发生的侵权行为,与本站无关。本站发布的内容若侵犯到您的权益,请联系本站删除,我们将及时处理!
0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索