如何从标签向帖子添加文本

时间:2012-08-23 作者:Mario

如何使用标签中的文本向帖子添加自定义生成的文本?

类似:[帖子标题]+自定义文本+标记+自定义文本。。。。

或者有没有插件可以做到这一点?

1 个回复
SO网友:pendjer

没有用于此的插件。。。至少一个插件:)

为自定义文本创建自定义文件。从wordpress安装ACF插件(高级自定义字段)。组织。

现在使用ACF创建字段组,然后在该组内为您的custom text 1custom text 2. (不要忘记为帖子和/或页面分配字段组。)

使用

 <?php the_field(\'custom_text_1\'); ?>
以及

 <?php the_field(\'custom_text_2\'); ?>
在页面/帖子模板内显示自定义文本1和自定义文本2。

您可以尝试使用调用标记get the tag list

<?php
echo get_the_tag_list(\'<p>Tags: \',\', \',\'</p>\');
?>
最后,您可以使用

<?php the_title(); ?>
所以。。。只需将此片段放在模板中要显示记录的位置:

<?php the_title(); ?> <?php the_field(\'custom_text_1\'); ?> <?php echo get_the_tag_list(\'<p>Tags: \',\', \',\'</p>\'); ?> <?php the_field(\'custom_text_2\'); ?>
您可以使用自己选择的记录更改custom\\u text\\u 1和custom\\u text\\u 2,但它们必须与您在ACF中创建的记录相同。

如果您想在帖子或页面的内容区域内显示您的记录,您可以使用任何其他插件来帮助您为给定的代码段创建[短代码]。

结束

相关推荐

plugins_url vs plugin_dir_url

我看到WordPress插件在为一些文件夹创建常量时使用plugins\\u url或plugin\\u dir\\u url。一个比另一个好吗?示例:define( \'MEMBERS_URI\', trailingslashit( plugin_dir_url( __FILE__ ) ) ); define( \'WPACCESS_INC\', plugins_url( \'inc\', __FILE__ ) , true );