您当前的位置:首页 > TAG信息列表 > array

  • Wordpress query reverse order

    时间:2017-12-25

    $args = array(\'post_type\' => \'etlap\', \'posts_per_page\' => 5, \'post__in\' => $ids, \'post_status\' => \'any\', \'orderby\' => \'post__in\'); 我想使orderby状态颠倒。怎么可能呢?对不起,如果我问了一个愚蠢的问题,但我找不到任何关于这个问题的纪录片。

  • Meta box io oemed返回列表而不是数组

    时间:2017-12-31

    我创建了一个嵌入克隆的元框:function media( $meta_boxes ) { $prefix = \'\'; $meta_boxes[] = array( \'id\' => \'media_1\', \'title\' => esc_html__( \'Media\', \'media\' ), \'post_types\' => array( \'post\

  • 使用Foreach遍历类内的数组

    时间:2017-12-23

    我正在我的WordPress template 我有一个多维数组protected 成员第二级的数组包含一些电子邮件地址string 我想通过foreach 环代码如下所示。class myclass { private $arr = array( \'emails\' => array( \'[email protected]\', \'[email protected]\', \'someone@ex

  • 提取序列化数组以用于wp查询

    时间:2017-12-20

    我使用wp查询,我需要使用作者id按作者显示帖子。这是序列化数组:a:19:{i:0;s:2:\"89\";i:3;s:3:\"105\";i:4;s:2:\"74\";i:5;s:3:\"111\";i:6;s:3:\"167\";i:7;s:2:\"83\";i:8;s:2:\"54\";i:9;s:2:\"87\";i:10;s:2:\"85\";i:11;s:2:\"77\";i:13;s:2:\"82\";i:14;s:2:\"60\";i:15;s:3:\"149\";i:16;s:3:\"1

  • 在_ARRAY后显示HTML内容时出现问题

    时间:2017-12-18

    我正在尝试根据this 问答。首先,我花了很长时间才明白为什么如果类别中只有一个帖子,它就不会出现——所以我发现计数应该从0开始,而不是从1开始;)但我不明白为什么HTML之后in_array 根本不显示?我试着搬家<div class=\'grid\'> 在上面<article></article> 但这显然行不通,因为这会导致每一篇文章都用网格包装。。。代码如下: <?php if (have_posts()) :

  • 如何从添加到同一自定义字段键的URL输出图像

    时间:2017-12-16

    这是添加到名为images的同一自定义字段中的图像URL数组。 $images = get_post_custom_values( \'images\' ); 我需要在模板文件中打印所有这些图像。

  • 组合GET_PAGE_BY_TITLE可从wp_list_ages中排除页面

    时间:2017-12-15

    我正在使用get_page_by_title 从中排除几页wp_list_pages, 我的代码如下所示:<?php $page1 = get_page_by_title(\'title1\'); $page2 = get_page_by_title(\'title2\'); wp_list_pages(\"title_li=&exclude=\'.$page1->ID.\',\'.$page2->ID.\'\") ?>

  • ARRAY_FILTER WARNING-wp-Includes/post.php第3148行

    时间:2017-12-13

    我插入the following code, 请参见下文,从前端提交帖子。提交时,会出现以下警告:警告:array\\u filter()要求参数1为数组,字符串在[…]中给出/wp包括/后。php在线3148我不知道警告来自哪里,哪个数组是字符串?function ty_front_end_form() { ?> <form id=\"custom-post-type\" name=\"custom-post-type\" method=\"post

  • 无法从Java脚本访问脚本本地化内的PHP数组

    时间:2017-12-13

    我有一个循环来检索具有特定meta_key 来自的用户值wp_user_meta 数据库,然后将其放入wp_localize_script 数组,这样我就可以使用Javascript访问数据并使用它来完成我的工作。不幸的是,当我运行循环并将所有结果放入变量中,然后尝试控制台时。记录结果,我在控制台中一行只得到字符串“Array”3次,而不是实际值。这是我的代码:功能。phpadd_action(\'wp_enqueue_scripts\',\'Load_Template_Scripts_wpa83855\

  • WP_UPDATE_POST将帖子ID设置为不工作的草稿

    时间:2017-11-29

    特别是WooCommerce产品页面。我正在使用WP_Query 生成数组。$params = array( \'posts_per_page\' => -1, \'post_type\' => \'product\', \'orderby\' => \'menu-order\', \'order\' => \'asc\', \'fields\' => \'ids\', \'tax

  • How to combine array info

    时间:2017-11-27

    Array ( [0] => Array ( [week-day] => tuesday [day-date] => 1511841600 [events_ids] => Array ( [0] => 83417 ) ) [1] => Array ( [week-day] => wednesday [day-date] => 1511913600 [events_ids] => Array ( [0] => 8

  • 如何在数组中使用if语句?

    时间:2017-10-28

    首先对不起我的英语。我希望你能理解我。我有这样一个数组:$fields = array( \'author\' => \'<div class=\"form-group\"><input class=\"form-control\" id=\"author\" name=\"author\" type=\"text\" placeholder=\"Name \'.( $req ? \'*\' : \'\' ) .\'\" value=\"\' . esc_attr(

  • 通过电子邮件删除多个用户的管理菜单链接

    时间:2017-10-27

    我有3个管理员用户,希望通过他们的电子邮件地址而不是角色来修改其中2个用户的管理菜单(因为功能都是一样的)。这适用于单个电子邮件地址:add_action(\'admin_menu\', \'remove_admin_menu_links\'); function remove_admin_menu_links(){ $user = wp_get_current_user(); if( $user && isset($user->user_em

  • 将PHP数组转换为jQuery数组“未捕获语法错误:意外标记<”

    时间:2017-10-26

    我试图将我的php数组传递给jQuery数组,但我在chrome控制台上遇到了这个错误,未捕获语法错误:意外的标记<;功能。php/*Call Jquery for dropdowns*/ function mytheme_custom_scripts(){ if ( is_page(\'Support\')) { $scriptSrc = get_stylesheet_directory_uri() . \'/js/freshdeskdata.

  • 创建分类的多维数组

    时间:2017-10-17

    创建多维分类数组大家好,我需要创建一个多维数组来通过javascript填充select。首先是两种分类法的选择,“store”和“state”。选择“存储”后,第二个选择将加载术语“状态”我当前的查询是这样的。它工作得很好,但我需要用这些信息创建一个数组,有人能帮我吗?$post_type = \'store\'; $tax = \'store_type\'; //$tax_terms = get_terms($tax); $tax_terms = get_terms(

  • Fatal error in my WP

    时间:2017-10-09

    每次我尝试登录我的WP时,都会出现这个致命错误,我不知道发生了什么以及如何解决。有人能帮我吗?我对编程和编码一无所知。在我看来:Fatal error: Uncaught Error: Cannot use object of type WP_Post as array in /home1/tenhacon/public_html/wp-content/plugins/mojo-marketplace-wp-plugin/inc/user-experience-tracking.php:92

  • POST上是否存在自定义分类?

    时间:2017-09-27

    我有一个名为“filter”的自定义分类法,如果帖子有“filter”卷,我想使用这个循环,否则就使用另一个循环。$work_tax = wp_get_post_terms( $post->ID, \'filter\' ); if (array_key_exists(\'reel\', $work_tax)) { get_template_part( \'loop\', \'work_feed_reel\' ); } else { get_t

  • 让用户搜索不使用数组

    时间:2017-09-26

    这是我的代码:function prefix_get_users(){ $args=array( \'blog_id\' => $GLOBALS[\'blog_id\'], \'search\' => \'mark\' ); $all_users=get_users($args); $arr=array(); foreach ($all_users as $val) {

  • 查询帖子并按时间顺序显示复读器字段中的所有日期

    时间:2017-09-05

    我有一个自定义的帖子类型“Production”,其中“Tourdates”作为repeaterfield(使用高级自定义字段插件)。Tourdates有一个“Date&;名为“Playdate”的“时间选择器”字段。我现在想显示(在列表中)按时间顺序排列的所有作品的所有播放日期。我当前的查询显示如下帖子:2017年4月9日(生产x)2017年12月28日(生产y)2017年4月7日(生产x)2017年4月11日(生产x)2017年4月31日(生产y)但我希望将其显示如下:2017年4月7日(生产x

  • 这个“?Function()”标记是什么?

    时间:2017-09-01

    我正在研究其他人的代码,试图理解他们的插件,这样我就可以将其与另一个插件结合起来,做一些不同的事情。我不知道为什么这个问号在这个条目的中间。代码显示在一行中:$variable = !empty( $_POST[\'variable_b\'] ) ? explode( \"\\n\", trim( $_POST[\'variable_b\'] ) ) : array();我理解清空、分解和修剪函数在这里的作用。我假设所有这些都被修改为数组。问号几乎像是一个小型的条件语句。