源码概述:
今天,我将为大家揭秘如何在 WordPress 文章的开头或结尾添加这样的固定内容,甚至包括自定义主题的文章类型。这一技巧相当实用,值得你收藏,说不定哪天就会派上用场!
如何在 WordPress 文章中添加固定内容
目前,汇站的每篇文章结尾都固定展示着这样一段内容(其实,我们还可以对其进行美化,不是吗?)
实现这一功能的关键在于使用了 WordPress 的过滤器钩子 add_filter。通过这个钩子,我们可以轻松地在文章的开头或结尾添加固定的内容。以下是具体的实现代码。
给文章开头添加固定内容
add_filter('the_content', 'add_zm_content_beforde');
function add_zm_content_beforde( $content ) {
if( !is_feed() && !is_home() && is_singular() && is_main_query() ) {
$before_content = "在文章内容开头添加固定内容";
$zm = $before_content . $content;
}
return $zm;
}
给文章结尾添加固定内容
add_filter('the_content', 'add_zm_content_after');
function add_zm_content_after( $content ) {
if( !is_feed() && !is_home() && is_singular() && is_main_query() ) {
$after_content = "在文章内容末尾添加固定内容";
$zm = $content . $after_content;
}
return $zm;
}
给文章开头和结尾同时添加固定内容
add_filter('the_content', 'add_zm_content_before_and_after');
function add_zm_content_before_and_after( $content ) {
if( !is_feed() && !is_home() && is_singular() && is_main_query() ) {
$after_content = "在文章内容末尾添加固定内容";
$before_content = "在文章内容开头添加固定内容";
$zm = $before_content . $content . $after_content;
}
return $zm;
}
给特定的文章类型添加固定内容
add_filter('the_content', 'add_zm_content_after_books_custom_post_type');
function add_zm_content_after_books_custom_post_type( $content ) {
if (is_singular( "books" )){
$new_books_content = "只在自定义帖子类型“books”文章末尾添加固定内容";
$aftercontent = $new_books_content;
$zm = $content . $aftercontent;
return $zm;
} else {
return $content;
}
}
这三段代码非常简洁,对于具备一定PHP编程基础的用户来说,理解起来应该不难。你只需根据自己的需求,对这些代码进行适当的修改,然后将它们添加到当前主题的`functions.php`文件中,保存并退出。之后,重启 PHP-FPM 服务,你的更改就会生效。
至于最后一段代码,它用于为特定的文章类型添加固定内容。要使用这段代码,你需要知道自定义文章类型的名称(例如,上述代码中的`book`)。你可以直接咨询主题开发者获取这些信息,或者通过编写 PHP 代码自行查询。创建一个名为`test.php`的 PHP 文件,并将以下代码添加进去:
<?
include("wp-load.php");
// Get post types
$args = array(
'public' => true,
);
$post_types = get_post_types( $args, 'objects' );//以 object 的形式返回所有文章类型
echo "<pre>";
var_dump($post_types)
?>
完成保存操作后,您只需在网站根目录的命令行界面执行以下命令,即可轻松获取当前 WordPress 中自定义的文章类型:
“`
php test.php
“`
请注意,由于不同的主题可能会产生不同的输出结果,这里就不展示具体的执行结果了。
转载请注明:汇站网 » 如何给 WordPress 文章首尾添加声明+自定义固定内容