wordpress可以开启链接功能
-
在functions.php里面添加以下代码
//开启wordpress友情链接管理 add_filter( 'pre_option_link_manager_enabled', '__return_true' );
-
网站后台会有链接功能,可以创建链接分类以及链接
-
前台调用函数
<?php $args = array( 'title_before' => '<h4>', 'title_after' => '</h4>', 'category_before' => '<div class="friendship_link clearfix">', 'category_after' => '</div>', ); wp_list_bookmarks( $args ); ?>