芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/optimyar/wp-content/plugins/wordpress-seo/src/presenters/url-list-presenter.php
links = $links; $this->class_name = $class_name; $this->target_blank = $target_blank; } /** * Presents the URL list. * * @return string The URL list. */ public function present() { $output = '
'; foreach ( $this->links as $link ) { $output .= '
target_blank ) { $output .= ' target = "_blank"'; } $output .= ' href="' . $link['permalink'] . '">' . $link['title'] . '
'; } $output .= '
'; return $output; } }