Typecho如何单纯输出上一篇和下一篇文章的链接和标题。
上一篇文章$this->thePrev()
下一篇文章$this->theNext()
输出中包含有a标签,应该如何获取单纯的链接地址 和 文章标题?
是需要修改系统核心还是可以有更简单的方法?
系统核心代码:
<code>public function theNext($format = '%s', $default = NULL, $custom = array()) { $content = $this->db->fetchRow($this->select()->where('table.contents.created > ? AND table.contents.created < ?', $this->created, $this->options->gmtTime) ->where('table.contents.status = ?', 'publish') ->where('table.contents.type = ?', $this->type) ->where('table.contents.password IS NULL') ->order('table.contents.created', Typecho_Db::SORT_ASC) ->limit(1)); if ($content) { $content = $this->filter($content); $default = array( 'title' => NULL, 'tagClass' => NULL ); $custom = array_merge($default, $custom); extract($custom); $linkText = empty($title) ? $content['title'] : $title; $linkClass = empty($tagClass) ? '' : 'class="' . $tagClass . '" '; $link = '<a ' . $linkClass . 'href="' . $content['permalink'] . '" title="' . $content['title'] . '">' . $linkText . '</a>'; printf($format, $link); } else { echo $default; } } public function thePrev($format = '%s', $default = NULL, $custom = array()) { $content = $this->db->fetchRow($this->select()->where('table.contents.created < ?', $this->created) ->where('table.contents.status = ?', 'publish') ->where('table.contents.type = ?', $this->type) ->where('table.contents.password IS NULL') ->order('table.contents.created', Typecho_Db::SORT_DESC) ->limit(1)); if ($content) { $content = $this->filter($content); $default = array( 'title' => NULL, 'tagClass' => NULL ); $custom = array_merge($default, $custom); extract($custom); $linkText = empty($title) ? $content['title'] : $title; $linkClass = empty($tagClass) ? '' : 'class="' . $tagClass . '" '; $link = '<a ' . $linkClass . 'href="' . $content['permalink'] . '" title="' . $content['title'] . '">' . $linkText . '</a>'; printf($format, $link); } else { echo $default; } } </code>
回复内容:
上一篇文章$this->thePrev()
下一篇文章$this->theNext()
输出中包含有a标签,应该如何获取单纯的链接地址 和 文章标题?
是需要修改系统核心还是可以有更简单的方法?
系统核心代码:
<code>public function theNext($format = '%s', $default = NULL, $custom = array()) { $content = $this->db->fetchRow($this->select()->where('table.contents.created > ? AND table.contents.created < ?', $this->created, $this->options->gmtTime) ->where('table.contents.status = ?', 'publish') ->where('table.contents.type = ?', $this->type) ->where('table.contents.password IS NULL') ->order('table.contents.created', Typecho_Db::SORT_ASC) ->limit(1)); if ($content) { $content = $this->filter($content); $default = array( 'title' => NULL, 'tagClass' => NULL ); $custom = array_merge($default, $custom); extract($custom); $linkText = empty($title) ? $content['title'] : $title; $linkClass = empty($tagClass) ? '' : 'class="' . $tagClass . '" '; $link = '<a ' . $linkClass . 'href="' . $content['permalink'] . '" title="' . $content['title'] . '">' . $linkText . '</a>'; printf($format, $link); } else { echo $default; } } public function thePrev($format = '%s', $default = NULL, $custom = array()) { $content = $this->db->fetchRow($this->select()->where('table.contents.created < ?', $this->created) ->where('table.contents.status = ?', 'publish') ->where('table.contents.type = ?', $this->type) ->where('table.contents.password IS NULL') ->order('table.contents.created', Typecho_Db::SORT_DESC) ->limit(1)); if ($content) { $content = $this->filter($content); $default = array( 'title' => NULL, 'tagClass' => NULL ); $custom = array_merge($default, $custom); extract($custom); $linkText = empty($title) ? $content['title'] : $title; $linkClass = empty($tagClass) ? '' : 'class="' . $tagClass . '" '; $link = '<a ' . $linkClass . 'href="' . $content['permalink'] . '" title="' . $content['title'] . '">' . $linkText . '</a>'; printf($format, $link); } else { echo $default; } } </code>
估计是要改的了。
实在不适合你的需求的话,可以在 functions.php 文件中重写两个代码。

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

PHP 8.4 带来了多项新功能、安全性改进和性能改进,同时弃用和删除了大量功能。 本指南介绍了如何在 Ubuntu、Debian 或其衍生版本上安装 PHP 8.4 或升级到 PHP 8.4

CakePHP 是 PHP 的开源框架。它的目的是使应用程序的开发、部署和维护变得更加容易。 CakePHP 基于类似 MVC 的架构,功能强大且易于掌握。模型、视图和控制器 gu

Visual Studio Code,也称为 VS Code,是一个免费的源代码编辑器 - 或集成开发环境 (IDE) - 可用于所有主要操作系统。 VS Code 拥有针对多种编程语言的大量扩展,可以轻松编写
