您当前的位置:首页 > TAG信息列表 > wp-error

  • Title tag wont change

    时间:2017-11-24

    我更改了博客的标题,在Customizer和其他我检查标题的地方,它都更改了,除了在实际站点上。我已经检查过,如果标签在标题中设置为静态。php,不是。主题是:海明威WP版本为:4.7.7(将很快更新为4.9)PHP:7.0.25问候Liz3

  • WP 4.8更新后出现模板管理错误

    时间:2017-06-19

    我们正在WP网站上使用上游模板。在上次WP 4.8更新之后,我们在管理面板上收到一条错误消息,这不允许我们使用幻灯片。错误如下:致命错误:未捕获错误:函数名必须是/var/www/vhost/calamburtetro中的字符串。com/home/html/wp-content/themes/UpStream/lib/Admin。php:248堆栈跟踪:#0/var/www/vhost/calamburteatro。com/home/html/wp-content/themes/UpStream/lib/

  • 如何使用WP_ERROR类显示错误消息?

    时间:2013-02-04

    我的functions.php 像这样归档if (\'POST\' == $_SERVER[\'REQUEST_METHOD\'] && !empty($_POST[\'action\']) && $_POST[\'action\'] == \'registration\') { $error = new WP_Error(); if (empty(esc_attr($_POST[\'email\'])))

  • Checking return with WP Error

    时间:2013-02-05

    我见过其他有类似问题的人,我知道在我的自定义分类法“hhie\\u艺术家”中调用子项时,我需要检查返回。我不知道该怎么做echo 我要合并的输出wp_error.这是我的代码:<?php $taxonomyName = \"hhie_artists\"; //Call top layer terms only (by setting Parent to 0). $parent_terms = get_terms($taxonomyName, array(\'parent\'

  • 如何为用户登录生成WP_ERROR对象?

    时间:2013-05-14

    我想返回登录错误消息,即使用户密钥在其权限正确。换句话说,终止登录并显示错误消息。当我们输入错误的密码时,wordpress会显示:There was an error authenticating your details. ERROR: The password you entered for the username admin is incorrect. Lost your password? 。。在登录页面上。这是因为WP_Error 返回对象。所以我好奇的问题是:如

  • 如何将数组传递给GET_THE_CATEGORY_BY_ID()并取回数组?

    时间:2013-06-27

    我正在尝试将类别ID数组传递给get_category_by_ID() 以获取类别名称数组。既然我还在努力让它发挥作用,我就用var_dump() 在输出上。我使用的是值1、5、3,因为5和3是我拥有的类别,而1是未分类的,这是我需要的。我从以下内容开始: $CatID = array(1, 5, 3,); foreach ($CatID as $ID) { $names = get_the_category_by_ID($ID); } var_dump($

  • WP_ERROR未显示错误

    时间:2013-07-05

    我试图为我的插件使用WP\\u错误,但什么都没有发生。这对于WP\\U错误来说是否太晚了?太早了?还是我做错了什么?function cpt_pre_post_publish(){ return new WP_Error(\'error\', __(\'Error!\' )); } add_action(\'pre_get_posts\', \'cpt_pre_post_publish\');

  • 3.6更新时出现可捕获的致命错误

    时间:2013-08-07

    正在尝试调试该情况。正在接近,但需要一些帮助!!以下是错误:Catchable fatal error: Object of class WP_Error could not be converted to string in /home/website/public_html/wp-content/themes/Alexia/lib/functions/common.php on line 97 以及我的错误代码:// no cache files - let\'s finally resiz

  • 未显示特色图像并出现错误“OBJECT OBJECT of CLASS WP_ERROR CATO NOT TO CONVERT TO INT”

    时间:2013-09-30

    首先,我使用了twentyeleven主题,创建了一个自定义模板页面来插入帖子。It has 4 submit forms. it is working well, also setting feature image is ok for 3 forms except the first one it is not setting feature image for the post even it upload the image (using upload form and also using im

  • 将错误从WP_ERROR获取到不同的变量

    时间:2013-10-27

    我在WP\\u错误中添加了多个错误。我想在不同的变量中分别得到这些错误。使用下面的代码,我可以获得foreach循环的所有错误,但如何将它们分配给单独的变量呢。我添加的错误是\'login_error\' 和\'email_error\'.<?php $return = my_custom_function(); if ( is_wp_error($return) ){ foreach ( $return -> get_err

  • Get_Term_Child仅适用于直系子女(不适用于孙辈)

    时间:2013-11-25

    我想显示自定义分类法的术语子级。目前,我可以使用get_term_children, 但是使用这个,它显示孩子和孙子,我想避免这个,并且只显示直系子。这就是我现在拥有的(但它会输出孩子和孙子):<?php $term_id = get_queried_object_id(); $taxonomy_name = \'mytaxname\'; $termchildren = get_term_children( $term_id, $taxonomy_name );&#

  • 无法将WP_ERROR类的对象转换为字符串

    时间:2014-04-18

    删除一些类别(不应该这样做)后,我得到以下错误可捕获的致命错误:WP\\u error类的对象无法转换为第45行[文件名]中的字符串这是导致错误的文件。这里有一段摘录(第45行是$output .= \'<a href=\"\' . $link . \'\">\' . $term->name. \'</a>, \';) ... foreach($item[\'value\'] as $value) { $term = get_term

  • 成功完成wp_Remote_POST时出现错误

    时间:2014-07-11

    What I\'m trying to do: 使用wp\\u remote\\u POST传递POST数据。foreach ( $articles as $article_id ) { $postarray = array( \'method\' => \'POST\', \'timeout\' => 5, \'redirection\' => 5, \'httpversion

  • 不能将WP_ERROR类型的对象用作数组

    时间:2015-03-04

    使用WordPress插件WPML 我在保存草稿时遇到以下错误:PHP Fatal error: Cannot use object of type WP_Error as array in /home/user/domain.com/wp-content/plugins/sitepress-multilingual-cms/inc/taxonomy-term-translation/wpml-term-translations.class.php on line 1018 在那条线上我有

  • 禁用WP_ERROR:AUTHENTION_FAILED

    时间:2015-03-16

    我正在修改我的wp登录。php,但从函数内部。php(为了不破坏核心)。我需要禁用一个WP\\u错误,代码为:authentication\\u failed。如果我破解核心并修改wp登录。php代码:foreach ( $wp_error->get_error_codes() as $code ) { $severity = $wp_error->get_error_data( $code ); foreach ( $wp_error->get_erro

  • 为什么is_wp_error()即使没有定义的错误也不返回FALSE

    时间:2015-05-15

    在表单提交中,我为我的插件定制了用户评论。我正在检查注释字段是否为空,并且注释字段至少填充了30个字符。如果两者都可以,我想插入注释。这是我的代码:<?php global $current_user, $post; if( isset( $_POST[\'send\'] ) && isset( $_POST[\'test_nonce\'] ) && wp_verify_nonce( $_POST[\'test_nonce\'], \'tes

  • 如何将多个wp_error组合在一起?

    时间:2015-06-02

    我在wordpress上创建了一个自定义注册表。每个字段都有验证错误,WordPress只会将所有错误转储到表单上方。我试图将这些错误分为多个输出,通过调用get_error_message(\'error_code\'); 但是,每个字段都有多个错误。是否有任何方法可以将与任何字段(如电子邮件字段)相关的所有错误分组(空电子邮件错误和电子邮件已退出…)然后在电子邮件输入字段下方对其进行哑操作?

  • 问题:wp_INSERT_POST和POST_CONTENT字段错误无法更新数据库中的POST

    时间:2015-06-25

    我在创建要在WordPress站点中使用的导入/缓存脚本时遇到问题。此提要来自单个文本文件,然后将其解析并作为数组返回。当运行提要中的每个项目时,我使用wp\\u insert\\u post函数添加数据(见下文):$post = array( \'post_title\' => $property[\'DISPLAY_ADDRESS\'], \'post_name\' => sanitize_title($property[\'D

  • 如何检查wp_update_post是否成功

    时间:2015-07-27

    我想使用更新帖子wp_update_post( $my_post ); 如何检查是否成功?更新成功后是否应返回帖子ID?我正在尝试:$post_id = wp_update_post( $my_post ); if ( $post_id ) { echo \"successful\"; } else { echo \"fail\"; } 上面的代码没有返回任何ID,所以我想确定它是否正确。

  • 如果WP_ERROR抛出错误,我如何创建“不给变量赋值”的状态?

    时间:2018-01-08

    我有以下代码可以从给定帐户中抓取Instagram图片:<?php class Scrape_Instagram { private $images = array(); public function __construct( $username ) { $this->username = $username; } private function buil