WordPress一为导航主题网站添加快照截图和收录总数功能原创文章

玩技站长 运维笔记1 281字数 434阅读1分26秒阅读模式

前情提要:

部分网站需要再前往需跳转网站前检查网站是否可用,所以今天的只要功能是通过查询数据库中的链接地址来获取网站快照截图。本功能适用于onenav主题。其他主题请自行尝试。

WordPress一为导航主题网站添加快照截图和收录总数功能插图文章源自玩技e族-https://www.playezu.com/824256.html

程序代码:

评论后刷新
由于本站被大量采集,顾添加评论验证防止因采集造成的网络崩溃

使用方法:

将上述代码添加到主题的function.php文件中,然后快捷标签<!--IMG_PLACEHOLDER-->添加到文章内容中即可显示快照截图。文章源自玩技e族-https://www.playezu.com/824256.html

收录总数:

找到代码路径 /wp-content/themes/onenav/templates/search/big.php ,搜索 id="search-list-menu" ,再两个if下面添加如下代码:文章源自玩技e族-https://www.playezu.com/824256.html

<?php function custom_menu_post_count($output, $args) { $post_type = 'sites'; $count_posts = wp_count_posts($post_type); $published_posts = $count_posts->publish; $output .= '<li id="menu-item-620" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-620"><a href="/top"> <i class="iconfont icon-smiley"></i> <span>网址收录:' . $published_posts . '</span></a></li>'; return $output; } add_filter('wp_nav_menu_items', 'custom_menu_post_count', 10, 2); ?>

WordPress一为导航主题网站添加快照截图和收录总数功能插图1文章源自玩技e族-https://www.playezu.com/824256.html

效果展示:

WordPress一为导航主题网站添加快照截图和收录总数功能插图2文章源自玩技e族-https://www.playezu.com/824256.html

 文章源自玩技e族-https://www.playezu.com/824256.html

 文章源自玩技e族-https://www.playezu.com/824256.html

 最后更新:2024-5-30
    • 乐乐
      乐乐 0

      看看怎么样

    匿名

    发表评论

    匿名网友
    确定

    拖动滑块以完成验证