您当前的位置:首页 > TAG信息列表 > the-content
如何通过php在内容中进行搜索和替换
我实际上可以在显示帖子时显示内容和更改内容。问题是我使用的是RSS导入器,导入后我想进行搜索、替换和更正导入的数据,因为我知道它有什么问题。 <?php add_action(\'pmxi_saved_post\', \'post_saved\', 10, 1); $my_post = array( \"ID\" => $id, \"post_content\" =>
为什么添加操作(‘the_content’)会覆盖我的页面
我是wordpress的新手,我正在尝试在我的网站的特定页面上显示一些文本。我的问题是,我的插件将该页面上的当前内容替换为插件上的内容。如何使插件不替换页面上的内容。add_action( \'the_content\', \"displayNewsSlider\"); function displayNewsSlider(){ if (is_page(\'sample-page\')){ echo \"plugin content 1\"; echo \"pl
如何保持文本前后与nl2br和_Content()的内联
我有\"<em><?php echo nl2br(the_content()); ?></em>\" 但是这两个\" 不与内容内联。如何保持前后一致\" 内联字符?
查找帖子内容中的标签单词,并将它们链接到标签URL
我想创建帖子内容中的单词(用作当前帖子的帖子标签的单词)到帖子标签URL的链接。我创建了这个,它很有效,但只针对帖子的一个单词(最后一个标签)。$post_content = get_the_content(); // Get post content $search = array($tag->name); $replace = array(\'<a href=\"\'.get_tag_link($tag->term_id).\'\" title=\"\'.$tag-&
修改Ixion主题以在主页上包含帖子摘录
这很可能有一个非常简单的解决方案。我正在使用Ixion 主题到目前为止,我真的很喜欢它的布局,我几乎准备出版了。但是,该主题设计为仅在首页显示帖子名称、帖子日期和帖子类别。我想另外加上这篇文章的摘录。我找到了在主页上填充最新帖子列表的代码(取自index.php): while ( have_posts() ) : the_post(); /* * Include the Post-Forma
WordPress将内容添加到不同分区
我想弄清楚的是如何让页面的内容显示在不同的div中。这意味着如果我在编辑器中添加两段,我希望在div section1中显示第一段,在div section2中显示第二段。页面代码:<?php if( have_posts()): while( have_posts()): the_post();?> <?php // original content display&
是否在特定div之前添加HTML?
我买了“Woocmere Checkout Add-Ons”插件,它将追加销售添加到结账页面,但它只允许在追加销售复选框后放置文本。所以我想在upsell复选框的上方添加一个带有样式文本的图像,该复选框用<div id=\"wc_checkout_add_ons\">. 我该怎么做?我读到the_content但我不太明白。
将自定义帖子类型的_Content();视为数组或对象
我在mu plugins文件夹中创建了一个自定义帖子类型。function wpdocs_codex_book_init() { $labels = array( \'name\' => _x( \'Books\', \'Post type general name\', \'textdomain\' ), \'singular_name\' => _x( \'book\', \'
包含库的get_post()在内容末尾输出一个不匹配的结束div
我创建了一个自定义页面,使用get\\u post(id)从各种帖子中获取内容。我使用此函数获取帖子:-function get_my_post($id){ $get_post = get_post($id); $content = apply_filters(\'the_content\', $get_post->post_content); echo $content; } 然而,输出似乎打破了DOM。经过一些调查,我意识到包含
Single-{post-type}.php问题中的_Content()
我有自定义的Post类型“pjesma”(歌曲),唯一能够显示内容的方法是archive-pjesma.php.工作正常:<?php get_header(); global $post; $args = array( \'post_type\' => \'pjesma\', \'posts_per_page\' => 10 ); $lastposts = get_posts( $args ); foreach ( $lastposts as $post