zidon 发表于 2021-12-3 21:53:48

Wordpress 使用技巧教程集锦

1、调用最受欢迎的日志模板代码

1)显示最受欢迎的日志的代码是:
<?php if (function_exists('get_most_viewed')): ?>
   <ul>
      <?php get_most_viewed(); ?>
   </ul>
<?php endif; ?>

2)显示某个分类下的最受欢迎的日志代码:

<?php if (function_exists('get_most_viewed_category')): ?>
   <ul>
      <?php get_most_viewed_category(); ?>
   </ul>
<?php endif; ?>

3)显示某个 tag 下的最受欢迎的日志代码:

<?php if (function_exists('get_most_viewed_tag')): ?>
   <ul>
      <?php get_most_viewed_tag(); ?>
   </ul>
<?php endif; ?>


2、将 WordPress 分类网址中删除/category/目录:

方法一:WP后台-设置-固定链接:在分类前缀的输入框中添加“.”即可。

方法二:在WP根目录的 .htaccess 文件中第一行添加重写规则:

RewriteRule ^category/(.+)$ /$1

本地win环境无效。

nihaolai 发表于 2023-2-26 18:38:42

好好好好好好好好好好好好好好好好好顶
页: [1]
查看完整版本: Wordpress 使用技巧教程集锦