自定义Wordpress书签

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义Wordpress书签相关的知识,希望对你有一定的参考价值。

I didn't like the way my bookmarks came out with wp_list_bookmarks or any other built-in function, so I figured out a way to have total control about the way your wordpress bookmarks are displayed.
In this example I wanted a table with the Bookmark-image in the left column and title and description in the right column.
  1. <?php
  2.  
  3. $links = $wpdb->get_results("SELECT * FROM $wpdb->links ORDER BY link_name ASC");
  4.  
  5. echo "<table border='0' class='linktable'>";
  6.  
  7. foreach ($links as $link) {
  8.  
  9. $linkurl=$link->link_url;
  10. $linkdesc=$link->link_description;
  11. $linkname=$link->link_name;
  12. $linkimage=$link->link_image;
  13. $linknotes=$link->link_notes;
  14.  
  15. echo "<tr><td><a href='$linkurl' target='_blank'><img src='$linkimage' alt='$linkurl' border='0' class='linkimg'></a></td>";
  16. echo "<td valign='top' class='link-desc'><h5>$linkname</h5>";
  17. echo "<div class='link-description'>$linkdesc </div></td></tr>";
  18. }
  19. echo "</table>";
  20. ?>

以上是关于自定义Wordpress书签的主要内容,如果未能解决你的问题,请参考以下文章

如何在WORDPRESS首页插入一段自定义代码?

Wordpress - 将代码片段包含到布局的选定部分的插件

如果我想从另一个片段中添加书签,为啥我的书签单词没有保存到 sqlite 数据库?

VSCode自定义代码片段——CSS选择器

VSCode自定义代码片段6——CSS选择器

VSCode自定义代码片段(vue主模板)