- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我为一个 wordpress 网站开发了一个主题和一些插件。这些插件全部用于自定义帖子类型。我尝试搜索几个小时来寻找解决方案,但我发现的所有解决方案似乎都不适合我。许多解决方案建议需要调用一个数组才能使 foreach 参数起作用,但我相当确定我的插件已经准确地使用了一个数组。我在本地开发人员上创建了一个完全可用的网站,没有任何错误,但是当我在我网站的实时子目录中安装任何插件时(用于演示),我收到以下三个错误:
“为/home3/adamshap/public_html/usdbls/wp-includes/post.php 第 1468 行中的 foreach() 提供的参数无效”
"无法修改 header 信息 - header 已发送(输出开始于/home3/adamshap/public_html/usdbls/wp-includes/post.php:1468)在/home3/adamshap/public_html/usdbls/wp-includes/option.php 第 787 行”
"无法修改 header 信息 - header 已发送(输出开始于/home3/adamshap/public_html/usdbls/wp-includes/post.php:1468)在/home3/adamshap/public_html/usdbls/wp-includes/option.php 第 788 行”
附加信息:我只在上传我的自定义 post_type 插件时收到错误(不是我开发的主题,只是插件)。错误出现在我所有的插件上,而不是任何一个。我知道错误出在我制作的插件上,所以我需要找出如何修复我的插件,而不是 wordpress 核心文件。
第一个错误指向 wp-includes/post.php 的第 1468 行。对应的部分代码如下:
if ( $args->register_meta_box_cb )
add_action( 'add_meta_boxes_' . $post_type, $args->register_meta_box_cb, 10, 1 );
$args->labels = get_post_type_labels( $args );
$args->label = $args->labels->name;
$wp_post_types[ $post_type ] = $args;
add_action( 'future_' . $post_type, '_future_post_hook', 5, 2 );
foreach ( $args->taxonomies as $taxonomy ) {
register_taxonomy_for_object_type( $taxonomy, $post_type );
}
第二个和第三个错误指向wp-includes/option.php文件中的这段代码:
// The cookie is not set in the current browser or the saved value is newer.
$secure = ( 'https' === parse_url( site_url(), PHP_URL_SCHEME ) );
setcookie( 'wp-settings-' . $user_id, $settings, time() + YEAR_IN_SECONDS, SITECOOKIEPATH, null, $secure );
setcookie( 'wp-settings-time-' . $user_id, time(), time() + YEAR_IN_SECONDS, SITECOOKIEPATH, null, $secure );
$_COOKIE['wp-settings-' . $user_id] = $settings;
鉴于这两个文件都是 wordpress 核心文件,我相信错误实际上是在我的插件代码中而不是上面的代码片段中。下面的保管箱链接链接到我完成的插件之一的 txt 文件(它超过了 stackoverflow 的字符限制)。
https://www.dropbox.com/s/137djd6x13wp2e5/about-intro.txt?dl=0
在此先感谢您的帮助!
最佳答案
已找到解决方案,部分感谢用户 Marc B 的上述评论。
我们发现在这三个错误中,真正的错误只是第一个错误,另外两个错误是由第一个错误引起的。
我的第一个解决方案是更改 wp-includes/post.php 文件(第 1468 - 1470 行):
foreach ( $args->taxonomies as $taxonomy ) {
register_taxonomy_for_object_type( $taxonomy, $post_type );
}
为此:
if (is_array($taxonomy) || is_object($taxonomy)) {
foreach ($args ->taxonomies as $taxonomy) {
register_taxonomy_for_object_type($taxonomy, $post_type);
}
}
虽然这解决了我的问题,但这是一个糟糕的解决方案,因为它需要编辑 wp 核心文件。在 Marc B 提出 var_dump 的建议并找到我的插件中使用分类法数组(错误地)的部分之后,我找到了真正的解决方案:
我的插件使用以下原始代码注册了一个自定义 post_type:
$args = array(
'label' => __( 'Statement', 'text_domain' ),
'description' => __( 'About Statement', 'text_domain' ),
'labels' => $labels,
'supports' => array('',''),
'taxonomies' => false,
'hierarchical' => false,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'menu_position' => 5,
'show_in_admin_bar' => true,
'show_in_nav_menus' => true,
'can_export' => true,
'has_archive' => false,
'exclude_from_search' => true,
'publicly_queryable' => true,
'query_var' => 'about',
'capability_type' => 'page',
);
register_post_type( 'about_type', $args );
}
add_action( 'init', 'about_post_type', 0);
如您所见,$args 数组将“分类法”定义为“假”。这就是导致错误的原因。解决方案是简单地将值“false”更改为数组。固定函数如下:
$args = array(
'label' => __( 'Statement', 'text_domain' ),
'description' => __( 'About Statement', 'text_domain' ),
'labels' => $labels,
'supports' => array('',''),
'taxonomies' => array(),
'hierarchical' => false,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'menu_position' => 5,
'show_in_admin_bar' => true,
'show_in_nav_menus' => true,
'can_export' => true,
'has_archive' => false,
'exclude_from_search' => true,
'publicly_queryable' => true,
'query_var' => 'about',
'capability_type' => 'page',
);
在自己寻找答案的过程中,我发现很多人似乎都有这个问题。如果您正在寻找类似的解决方案,我建议您查看插件的 register_post_type 函数以查看数组如何处理分类法。
关于php - 自定义 Post_Type 插件导致为 wp-includes/post.php 中的 foreach() 提供的参数无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33156258/
这个问题已经有答案了: 已关闭12 年前。 Possible Duplicates: what is the difference between #include and #include “fi
我想使用 #include 指令,其文件名作为外部定义的宏传递。 例如 #include #FILE".h" 其中 FILE 将被定义为字符串 MyFile(不带引号),结果为 #include "M
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 7年前关闭。 Improve thi
我想在当前目录及其子目录下的每个 .m 文件中查找所有出现 ncread 的情况。我使用以下命令: grep -R --include="\.m" ncread . 但是该命令没有返回任何内容。 gr
有时我会遇到这样的情况,我发现我需要为大型第三方文件制作一个#include,这样我才能使用一个函数或一个小类,这让我感到内疚,因为我知道这已经消失了增加我的编译时间,因为当我只想要一个功能时它会编译
这个问题在这里已经有了答案: 关闭13年前. Possible Duplicate: what is the difference between #include and #include “fi
我正在尝试通过应用程序加载器提交应用程序。我收到这个错误。但我已经检查了build设置,所有三种架构都包含在有效架构设置中。 最佳答案 断开任何设备,只保留“iOS 设备”中的选项并将其存档。 关于i
Please check this demo plunker更好地理解我的问题。 在我的主页上有一个表格。每个表行后面都有一个最初隐藏的空行。单击第一行时,我使用指令在其下方的空行中注入(inject
我正在使用 mkdocs 创建 html 网页和片段扩展以将我的主文档分成小块。我有一个难以理解的错误: 在我制作的文件file1.md中: --8<-- includes/some_rep/frag
include的推荐方式是什么?您项目的所有文件? 我见过很多使用类似结构的例子: include 的有序列表单个顶级文件(定义 Module 的文件,或应用程序中的“主”文件)中的语句。 这似乎也是
我想知道如何使用 fx:include与 JavaFX Scene Builder 结合使用,因此: 想象我有一个 BorderPane (文件 borderpane.fxml)。在中间部分我想放一个
我看到 Fortran 有“调用”和“包含”语句。两者有什么区别? .i 文件类型有什么意义吗? 即: include 'somefile.i' call 'somesubroutine.f' 谢谢!
这很挑剔,可能没有任何实际用途。我只是好奇... 在 C++20 工作草案 (n4861) 中, header 名称定义为: (5.8) header-name: " q-char-
这个问题已经有答案了: 已关闭10 年前。 Possible Duplicate: What is the difference between #include and #include “fil
我有一个非常庞大且臃肿的类,我想将它拆分成单独的文件,但它应该对用户完全透明并且与使用该类的现有项目兼容。 特别是,我有自己的 ImageMatrix 类,它定义了大量的一元函数、大量带有标量的二元函
我是 grep 的新手,在重构 C 和 C++ 文件的过程中,我遇到了替换系统的问题,包括 #include <>与本地包括 #include "" . 有没有一种方法可以将 grep 与任何替代工具
我正在制作一个 Spring MVC web 项目,我必须有一个常量 header 。 我的基本要求是“我们希望在所有屏幕上都有一个标题,以显示谁登录了 ProjectA。” 我从这里“What is
在 SWIG 中,“%include”指令与标准 C“#include”有什么区别? 例如,在所有教程中,为什么它们通常看起来像这样: %module my_module %{ #include "M
假设我们有这个头文件: MyClass.hpp #pragma once #include class MyClass { public: MyClass(double); /* .
我已经在一个项目上工作了一段时间,该项目实现了一个使用 C 库的自定义框架。该框架是用 Swift 编写的,我创建了一个模块来向 Swift 公开 C 头文件。该框架是在不同的项目中启动的,然后将该框
我是一名优秀的程序员,十分优秀!