wp_links.php

来自「在综合英文版XOOPS 2.09, 2.091, 2.092 的基础上正式发布X」· PHP 代码 · 共 26 行

PHP
26
字号
<?phpif( ! defined( 'WP_LINKS_INCLUDED' ) ) {	define( 'WP_LINKS_INCLUDED' , 1 ) ;	function b_wp_links_show($option)	{		global $wpdb;		global $use_cache;		$id=1;		$use_cache = 1;		require(dirname(__FILE__).'/../wp-config.php');		ob_start();		block_style_get();		echo "<ul class='wpBlockList'>\n";		get_links_list();		echo "</ul>\n";		$block['content'] = ob_get_contents();		ob_end_clean();		return $block;	}}?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?