- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我已经尝试了很多 php 组合来让 wordpress 输出 $post->post_content 作为格式化文本(与 echo $post->post_content
给我的原始格式相反)。这种组合似乎是最有前途的,但它没有输出任何东西。有什么想法吗?
(就是这一行:<?php $content = apply_filters('the_content', $s->post_content); ?>
)
<?php query_posts('orderby=menu_order&order=asc&posts_per_page=-1&post_type=page&post_parent='.$post->ID); if(have_posts()) { while(have_posts()) { the_post(); ?>
<div class="page">
<?php
global $wpdb;
$subs = $wpdb->get_results("SELECT * FROM $wpdb->posts WHERE post_parent='$post->ID' AND post_type='page' AND post_status='publish'");
if($subs) {
?>
<div class="navi"></div>
<a class="naviNext"><img src="<?php bloginfo('template_url'); ?>/images/navi-next.png" alt="" /></a>
<div class="scrollable">
<div class="items">
<?php foreach($subs as $s) { ?>
<div class="item">
<h2><?php echo $s->post_title; ?></h2>
<?php $content = apply_filters('the_content', $s->post_content); echo $content; ?>
</div>
<?php } ?>
</div>
</div>
<?php } else { the_content(); } ?>
</div>
<?php } } wp_reset_query(); ?>
最佳答案
据我所知,将主要“格式化”应用于内容主体的函数是 wpautop() .该功能应该通过 wordpress 连接到“the_content”中。尽管该函数确实会做烦人的事情(比如搞乱嵌入代码),但有很多插件会将其从过滤器堆栈中解脱出来。尝试更换您的线路:
<?php $content = apply_filters('the_content', $s->post_content); echo $content; ?>
与
<?php $content = wpautop($s->post_content); echo $content; ?>
如果这有帮助,那么您可能遇到了 wpautop 在某处脱钩的问题。
关于php - 为什么 apply_filter ('the_content' ) 不输出任何东西?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3602941/
我有一个这样的场景,因为它是一个大代码,我用一种简单的方式问这个: 在名为 One.php 的文件中,我有这样的内容: add_filter('eshopaddtocheckout','eshop_e
我有一个这样的场景,因为它是一个大代码,我用一种简单的方式问这个: 在名为 One.php 的文件中,我有这样的内容: add_filter('eshopaddtocheckout','eshop_e
我有两个带有外键 -user 的关系表。而返回给我的queryset如下 city: null, contact_address: "", contact_number: "9874563210",
有人可以帮我吗,我需要一个只有唯一用户的共享列表,只有最新的共享pr。用户(post__user) 我在API框架中使用tastypie,希望有人能帮助我,我的模型布局如下:: class Post(
我在实际教程中问过这个问题,但不确定我是否会在将近 2 个月大的时候得到答案......所以我会在这里看一看...... 教程在这里:Build a WordPress Plugin to Add A
我试图了解 WordPress 中的一些功能,但我无法理解 apply_filters(...)事实上确实如此。 有人可以用几个例子帮我澄清这个问题吗? 最佳答案 apply_filters($tag
我以为显示:内联;在 h1 中本来可以做到这一点,但事实并非如此。任何关于这是如何工作的答案,所以他们不会换行? 我现在的 SCSS: .o
我已经尝试了很多 php 组合来让 wordpress 输出 $post->post_content 作为格式化文本(与 echo $post->post_content 给我的原始格式相反)。这种组
我对 WordPress 和 WooCommerce 完全陌生,因此对糟糕的解释表示歉意。 我有这个代码: $text = apply_filters( 'prefix_xml_feeds_produ
我正在尝试了解 WordPress 插件,例如: apply_filters( 'gettext', $translations->translate( $text ), $text, $domain
我正在将一个 Wordpress 网站迁移到完全 https:// ,但我在登录页面上遇到问题。 登录页面本身正在加载 https://方案,但表单操作指向不安全,http://页面的版本,这导致它简
add_filter 和有什么区别, apply_filters , add_action 和 do_action ? 我可以看到 do_action在代码中放置一个标签,然后 add_action
我尝试使用自动更新功能更新我的 wordpress 安装。更新后整个站点都关闭了。检查日志文件我有这个错误: fatal error :调用/public_html/wp-includes/load.
我是一名优秀的程序员,十分优秀!