• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP print_meta函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中print_meta函数的典型用法代码示例。如果您正苦于以下问题:PHP print_meta函数的具体用法?PHP print_meta怎么用?PHP print_meta使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了print_meta函数的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: add_slider_option_element

        public function add_slider_option_element()
        {
            $slider_meta_box = $this->slider_meta_box;
            global $post;
            echo '<div id="cp-overlay-wrapper">';
            ?>
 <div class="gallery-option-meta" id="gallery-option-meta"> <?php 
            //set_nonce();
            foreach ($slider_meta_box as $meta_box) {
                //echo '<pre>';print_r($meta_box);die;
                if ($meta_box['type'] == 'sliderpicker') {
                    $xml_string = get_post_meta($post->ID, $meta_box['xml'], true);
                    if (!empty($xml_string)) {
                        $xml_val = new DOMDocument();
                        $xml_val->loadXML($xml_string);
                        $meta_box['value'] = $xml_val->documentElement;
                    }
                    self::print_slider_picker($meta_box);
                } else {
                    $meta_box['value'] = get_post_meta($post->ID, $meta_box['name'], true);
                    print_meta($meta_box);
                }
            }
            ?>
 </div> <?php 
            echo '</div>';
        }
开发者ID:pcco,项目名称:portal-redesign,代码行数:27,代码来源:cp_slider.php


示例2: add_post_option_element

function add_post_option_element()
{
    global $post, $post_meta_boxes;
    // init array
    $post_meta_boxes['Choose Left Sidebar']['options'] = get_sidebar_name();
    $post_meta_boxes['Choose Right Sidebar']['options'] = $post_meta_boxes['Choose Left Sidebar']['options'];
    echo '<div id="gdl-overlay-wrapper">';
    ?>
 <div class="post-option-meta" id="post-option-meta"> <?php 
    set_nonce();
    foreach ($post_meta_boxes as $meta_box) {
        if ($meta_box['type'] == 'imagepicker') {
            $xml_string = get_post_meta($post->ID, $meta_box['xml'], true);
            if (!empty($xml_string)) {
                $xml_val = new DOMDocument();
                $xml_val->loadXML($xml_string);
                $meta_box['value'] = $xml_val->documentElement;
            }
        } else {
            if ($meta_box['type'] == 'open' || $meta_box['type'] == 'close') {
            } else {
                $meta_box['value'] = get_post_meta($post->ID, $meta_box['name'], true);
            }
        }
        print_meta($meta_box);
        if ($meta_box['type'] != 'open' && $meta_box['type'] != 'close') {
            echo "<div class='clear'></div>";
            echo empty($meta_box['hr']) ? '<hr class="separator mt20">' : '';
        }
    }
    ?>
 </div> <?php 
    echo '</div>';
}
开发者ID:hongviet119,项目名称:dlvv,代码行数:34,代码来源:post-option.php


示例3: add_gallery_option_element

function add_gallery_option_element()
{
    global $post, $gallery_meta_box;
    echo '<div id="gdl-overlay-wrapper">';
    ?>
 <div class="gallery-option-meta" id="gallery-option-meta"> <?php 
    set_nonce();
    foreach ($gallery_meta_box as $meta_box) {
        if ($meta_box['type'] == 'gallerypicker') {
            $xml_string = get_post_meta($post->ID, $meta_box['xml'], true);
            if (!empty($xml_string)) {
                $xml_val = new DOMDocument();
                $xml_val->loadXML($xml_string);
                $meta_box['value'] = $xml_val->documentElement;
            }
            print_gallery_picker($meta_box);
        } else {
            $meta_box['value'] = get_post_meta($post->ID, $meta_box['name'], true);
            print_meta($meta_box);
        }
    }
    ?>
 </div> <?php 
    echo '</div>';
}
开发者ID:TheMysticalSock,项目名称:westmichigansymphony,代码行数:25,代码来源:gallery-option.php


示例4: add_testimonial_option_element

function add_testimonial_option_element()
{
    global $post, $testimonial_meta_boxes;
    echo '<div id="gdl-overlay-wrapper">';
    ?>
 <div class="testimonial-option-meta" id="testimonial-option-meta"> <?php 
    set_nonce();
    foreach ($testimonial_meta_boxes as $meta_box) {
        $meta_box['value'] = get_post_meta($post->ID, $meta_box['name'], true);
        print_meta($meta_box);
    }
    ?>
 </div> <?php 
    echo '</div>';
}
开发者ID:uglmee,项目名称:kikiku.com,代码行数:15,代码来源:testimonial-option.php


示例5: add_price_table_option_element

function add_price_table_option_element()
{
    global $post, $price_table_meta_boxes;
    echo '<div id="gdl-overlay-wrapper">';
    ?>
 <div class="testimonial-option-meta" id="testimonial-option-meta"> <?php 
    set_nonce();
    foreach ($price_table_meta_boxes as $meta_box) {
        $meta_box['value'] = get_post_meta($post->ID, $meta_box['name'], true);
        print_meta($meta_box);
        if (empty($meta_box['hr'])) {
            echo '<hr class="separator mt20" />';
        }
    }
    ?>
 </div> <?php 
    echo '</div>';
}
开发者ID:hongviet119,项目名称:dlvv,代码行数:18,代码来源:price-table-option.php


示例6: print_header

function print_header($no_body = 0)
{
    global $doc_name;
    global $css_file;
    print "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\"\n";
    print " \"http://www.w3.org/TR/REC-html40/loose.dtd\">\n";
    print "<html>\n";
    print "<head>\n";
    print "<title>{$doc_name}</title>\n";
    print_meta();
    if ($css_file) {
        print "<link rel=stylesheet type=\"text/css\" href=\"{$css_file}\">";
    } else {
        $style_body = "marginwidth=\"0px\" marginheight=\"0px\" leftmargin=\"0px\" topmargin=\"0px\" " . style_body();
    }
    print "</head>\n";
    if ($no_body == 0) {
        print "<body {$style_body}>\n";
    }
}
开发者ID:BackupTheBerlios,项目名称:eyedoc,代码行数:20,代码来源:layout.inc.php


示例7: add_package_option_element

function add_package_option_element()
{
    global $post, $package_meta_boxes;
    // init array
    $package_meta_boxes['Choose Left Sidebar']['options'] = get_sidebar_name();
    $package_meta_boxes['Choose Right Sidebar']['options'] = $package_meta_boxes['Choose Left Sidebar']['options'];
    echo '<div id="gdl-overlay-wrapper">';
    ?>
 <div class="testimonial-option-meta" id="testimonial-option-meta"> <?php 
    set_nonce();
    foreach ($package_meta_boxes as $meta_box) {
        $meta_box['value'] = get_post_meta($post->ID, $meta_box['name'], true);
        print_meta($meta_box);
        if (empty($meta_box['hr'])) {
            echo '<hr class="separator mt20" />';
        }
    }
    ?>
 </div> <?php 
    echo '</div>';
}
开发者ID:shimion,项目名称:preview1,代码行数:21,代码来源:package-option.php


示例8: print_page_elements

function print_page_elements($args, $xml_val, $item_type)
{
    extract($args);
    $head_type = $item_type;
    if (empty($xml_val)) {
        $head_size = '';
        $head_name = array('item' => $item, 'size' => $size, 'itemname' => '', 'sizename' => '');
    } else {
        $head_size = find_xml_value($xml_val, 'size');
        $head_name = array('item' => $item, 'size' => $size, 'itemname' => $item . '[]', 'sizename' => $size . '[]');
    }
    print_page_item_identical($head_name, $head_size, $head_type);
    ?>
			
			<div class="page-element-edit-box" id="page-element-edit-box">
			
			<?php 
    foreach ($name[$item_type] as $input_key => $input_value) {
        if ($input_key == 'slider-item') {
            $slider_value = find_xml_node($xml_val, 'slider-item');
            print_image_picker(array('name' => $input_value, 'value' => $slider_value));
        } else {
            if ($input_key == 'tab-item') {
                print_box_tab($input_value, find_xml_node($xml_val, 'tab-item'));
            } else {
                $input_value['value'] = find_xml_value($xml_val, $input_key);
                $input_value['name'] = $input_value['name'] . '[]';
                print_meta($input_value);
            }
        }
        if ($input_key != 'open' && $input_key != 'close') {
            echo empty($input_value['hr']) ? '<hr class="separator mt20">' : '';
        }
    }
    ?>
			
			</div>
		</div>
		
		<?php 
}
开发者ID:uglmee,项目名称:kikiku.com,代码行数:41,代码来源:page-option.php


示例9: add_portfolio_option_element

function add_portfolio_option_element()
{
    global $post, $portfolio_meta_boxes;
    // init array
    $portfolio_meta_boxes['Choose Left Sidebar']['options'] = get_sidebar_name();
    $portfolio_meta_boxes['Choose Right Sidebar']['options'] = $portfolio_meta_boxes['Choose Left Sidebar']['options'];
    if (get_option(THEME_SHORT_NAME . '_use_portfolio_as') == 'portfolio style') {
        unset($portfolio_meta_boxes['Author Infomation']);
        unset($portfolio_meta_boxes['Portfolio Header']);
        unset($portfolio_meta_boxes['Social Sharing']);
    } else {
        unset($portfolio_meta_boxes['Clients Name']);
        unset($portfolio_meta_boxes['Skill Value']);
        unset($portfolio_meta_boxes['Website Url']);
    }
    echo '<div id="gdl-overlay-wrapper">';
    ?>
 <div class="post-option-meta" id="post-option-meta"> <?php 
    set_nonce();
    foreach ($portfolio_meta_boxes as $meta_box) {
        if ($meta_box['type'] == 'imagepicker') {
            $xml_string = get_post_meta($post->ID, $meta_box['xml'], true);
            if (!empty($xml_string)) {
                $xml_val = new DOMDocument();
                $xml_val->loadXML($xml_string);
                $meta_box['value'] = $xml_val->documentElement;
            }
        } else {
            if ($meta_box['type'] == 'open' || $meta_box['type'] == 'close') {
            } else {
                $meta_box['value'] = get_post_meta($post->ID, $meta_box['name'], true);
            }
        }
        print_meta($meta_box);
        if ($meta_box['type'] != 'open' && $meta_box['type'] != 'close') {
            echo "<div class='clear'></div>";
            echo empty($meta_box['hr']) ? '<hr class="separator mt20">' : '';
        }
    }
    ?>
 </div> <?php 
    echo '</div>';
}
开发者ID:VipinMundayad,项目名称:ChinUpd8,代码行数:43,代码来源:portfolio-option.php



注:本文中的print_meta函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP print_month_option_list函数代码示例发布时间:2022-05-15
下一篇:
PHP print_message函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap