我想使用插件在每个Wordpress页面的页面标题后打印” Hello World”。我可以从主题文件夹中的page.php中做到这一点, 但是我想使用插件来做到这一点。先感谢你。
<?php
/*
Plugin Name: Display Data
Plugin URI: https://rb.com
Description: My Plugin Dev.
Version: 0.1
Author: RB
*/
function printData()
{
if(THIS IS A PAGE)
{
echo "Hello World";
}
else
{
echo "This is not a Page";
}
}
add_action('DONT KNOW WHAT SHOULD BE HERE', 'printData');
?>
#1
你需要打印数据的地方?头衔()?内容标题?
每个页面的标题示例:
function printData($title)
{
if(is_page())
{
$title .= " Hello World";
}
else
{
$title .= " This is not a Page";
}
return $title;
}
add_filter('wp_title', 'printData');
对于内容标题:
function printData($title)
{
if(is_page())
{
$title .= " Hello World";
}
else
{
$title .= " This is not a Page";
}
return $title;
}
add_filter('the_title', 'printData');
评论前必须登录!
注册