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

PHP op_text_field函数代码示例

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

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



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

示例1: _e

</label>
    <p class="op-micro-copy"><?php 
_e('Choose a box background start colour.', OP_SN);
?>
</p>
    <?php 
op_color_picker('op[size_color][box_color_start]', $box_color_start, 'op_size_color_box_color_start');
?>
    <label for="op_header_layout_box_color_end" class="form-title"><?php 
_e('Box background end colour', OP_SN);
?>
</label>
    <p class="op-micro-copy"><?php 
_e('Choose a box background end colour.', OP_SN);
?>
</p>
    <?php 
op_color_picker('op[size_color][box_color_end]', $box_color_end, 'op_size_color_box_color_end');
?>
    <label for="op_header_layout_box_width" class="form-title"><?php 
_e('Box width', OP_SN);
?>
</label>
    <p class="op-micro-copy"><?php 
_e('Enter box width in pixels.', OP_SN);
?>
</p>
    <?php 
op_text_field('op[size_color][box_width]', $box_width);
?>
</div>
开发者ID:denis-chmel,项目名称:wordpress,代码行数:31,代码来源:size_color.php


示例2: _e

<div class="op-bsw-grey-panel-content op-bsw-grey-panel-no-sidebar cf">        
    <label for="op_sections_email_marketing_services_getresponse_api_key" class="form-title"><?php 
_e('GetResponse API key', OP_SN);
?>
</label>
    <p class="op-micro-copy"><?php 
_e('Copy GetResponse API key here.', OP_SN);
?>
</p>
    <?php 
op_text_field('op[sections][email_marketing_services][getresponse_api_key]', op_get_option('getresponse_api_key'));
?>
    <label for="op_sections_email_marketing_services_getresponse_api_url" class="form-title"><?php 
_e('GetResponse API calls URL', OP_SN);
?>
</label>
    <p class="op-micro-copy"><?php 
_e('If needed copy GetResponse custom API calls URL here.', OP_SN);
?>
</p>
    <?php 
$apiUrl = op_get_option('getresponse_api_url');
if (empty($apiUrl)) {
    $apiUrl = 'http://api2.getresponse.com';
}
op_text_field('op[sections][email_marketing_services][getresponse_api_url]', $apiUrl);
?>
</div>
开发者ID:denis-chmel,项目名称:wordpress,代码行数:28,代码来源:getresponse.php


示例3: _e

<div class="op-bsw-grey-panel-content op-bsw-grey-panel-no-sidebar cf">
    <label for="op_sections_email_marketing_services_convertkit_api_key" class="form-title"><?php 
_e('API Key', OP_SN);
?>
</label>
    <?php 
op_text_field('op[sections][email_marketing_services][convertkit_api_key]', op_get_option('convertkit_api_key'));
?>
</div>
开发者ID:kyscastellanos,项目名称:arepa,代码行数:9,代码来源:convertkit.php


示例4: _e

<div class="op-bsw-grey-panel-content op-bsw-grey-panel-no-sidebar cf">        
    <label for="op_sections_email_marketing_services_campaignmonitor_api_key" class="form-title"><?php 
_e('Campaign Monitor API key', OP_SN);
?>
</label>
    <p class="op-micro-copy"><?php 
_e('Copy Campaign Monitor API key here.', OP_SN);
?>
</p>
    <?php 
op_text_field('op[sections][email_marketing_services][campaignmonitor_api_key]', op_get_option('campaignmonitor_api_key'));
?>
</div>
开发者ID:shahadat014,项目名称:geleyi,代码行数:13,代码来源:campaignmonitor.php


示例5: _e

<div class="op-bsw-grey-panel-content op-bsw-grey-panel-no-sidebar cf">
    <label for="op_sections_email_marketing_services_arpreach_api_key" class="form-title"><?php 
_e('API Key', 'optimizepress');
?>
</label>
    <?php 
op_text_field('op[sections][email_marketing_services][arpreach_api_key]', op_get_option('arpreach_api_key'));
?>
    <label for="op_sections_email_marketing_services_arpreach_api_endpoint" class="form-title"><?php 
_e('API Endpoint', 'optimizepress');
?>
</label>
    <?php 
op_text_field('op[sections][email_marketing_services][arpreach_api_endpoint]', op_get_option('arpreach_api_endpoint'));
?>
</div>
开发者ID:kyscastellanos,项目名称:arepa,代码行数:16,代码来源:arpreach.php


示例6: _e

<div class="op-bsw-grey-panel-content op-bsw-grey-panel-no-sidebar">
    <label class="form-title" for="op_sections_promotion_settings_affiliate_url"><?php 
_e('Affiliate URL');
?>
</label>
    <p class="op-micro-copy"><?php 
_e('Enter your OptimizePress affiliate URL here. This will link to the "Powered by OptimizePress " message in the footer. To promote OptimizePress join at <a target="_blank" href="http://www.optimizepress.com/affiliates">http://www.optimizepress.com/affiliates</a>. Leave blank to remove "Powered by..." message.', 'optimizepress');
?>
    <?php 
op_text_field('op[sections][promotion_settings][affiliate_url]', op_default_option('promotion_settings', 'affiliate_url'));
?>
</div>
开发者ID:kyscastellanos,项目名称:arepa,代码行数:12,代码来源:promotion_settings.php


示例7: _e

<div class="op-bsw-grey-panel-content op-bsw-grey-panel-no-sidebar cf">
    <label for="op_sections_email_marketing_services_egoi_api_key" class="form-title"><?php 
_e('API Key', 'optimizepress');
?>
</label>
    <?php 
op_text_field('op[sections][email_marketing_services][egoi_api_key]', op_get_option('egoi_api_key'));
?>
</div>
开发者ID:kyscastellanos,项目名称:arepa,代码行数:9,代码来源:egoi.php


示例8: _e

<div class="op-bsw-grey-panel-content op-bsw-grey-panel-no-sidebar cf">
    <label for="op_sections_email_marketing_services_emma_account_id" class="form-title"><?php 
_e('Account ID', 'optimizepress');
?>
</label>
    <?php 
op_text_field('op[sections][email_marketing_services][emma_account_id]', op_get_option('emma_account_id'));
?>
    <label for="op_sections_email_marketing_services_emma_public_key" class="form-title"><?php 
_e('Public API Key', 'optimizepress');
?>
</label>
    <?php 
op_text_field('op[sections][email_marketing_services][emma_public_key]', op_get_option('emma_public_key'));
?>
    <label for="op_sections_email_marketing_services_emma_private_key" class="form-title"><?php 
_e('Private API Key', 'optimizepress');
?>
</label>
    <?php 
op_text_field('op[sections][email_marketing_services][emma_private_key]', op_get_option('emma_private_key'));
?>
</div>
开发者ID:kyscastellanos,项目名称:arepa,代码行数:23,代码来源:emma.php


示例9: _e

<div class="op-bsw-grey-panel-content op-bsw-grey-panel-no-sidebar cf">        
    <label for="op_sections_email_marketing_services_officeautopilot_app_id" class="form-title"><?php 
_e('OfficeAutopilot App ID', OP_SN);
?>
</label>
    <?php 
op_text_field('op[sections][email_marketing_services][officeautopilot_app_id]', op_get_option('officeautopilot_app_id'));
?>
    <label for="op_sections_email_marketing_services_officeautopilot_api_key" class="form-title"><?php 
_e('OfficeAutopilot API Key', OP_SN);
?>
</label>
    <?php 
op_text_field('op[sections][email_marketing_services][officeautopilot_api_key]', op_get_option('officeautopilot_api_key'));
?>
</div>
开发者ID:shahadat014,项目名称:geleyi,代码行数:16,代码来源:officeautopilot.php


示例10: _e

<div class="op-bsw-grey-panel-content op-bsw-grey-panel-no-sidebar cf">
    <label for="op_sections_email_marketing_services_constantcontact_api_key" class="form-title"><?php 
_e('API Key', OP_SN);
?>
</label>
    <?php 
op_text_field('op[sections][email_marketing_services][constantcontact_api_key]', op_get_option('constantcontact_api_key'));
?>
    <label for="op_sections_email_marketing_services_constantcontact_token" class="form-title"><?php 
_e('Token', OP_SN);
?>
</label>
    <?php 
op_text_field('op[sections][email_marketing_services][constantcontact_token]', op_get_option('constantcontact_token'));
?>
</div>
开发者ID:kyscastellanos,项目名称:arepa,代码行数:16,代码来源:constantcontact.php


示例11: _e

<div class="op-bsw-grey-panel-content op-bsw-grey-panel-no-sidebar cf">        
    <label for="op_sections_email_marketing_services_infusionsoft_account_id" class="form-title"><?php 
_e('Account ID/name', OP_SN);
?>
</label>
    <p class="op-micro-copy"><?php 
_e('Enter first part of your account URL (subdomain).', OP_SN);
?>
</p>
    <?php 
op_text_field('op[sections][email_marketing_services][infusionsoft_account_id]', op_get_option('infusionsoft_account_id'));
?>
    <label for="op_sections_email_marketing_services_infusionsoft_api_key" class="form-title"><?php 
_e('API key', OP_SN);
?>
</label>
    <?php 
op_text_field('op[sections][email_marketing_services][infusionsoft_api_key]', op_get_option('infusionsoft_api_key'));
?>
</div>
开发者ID:shahadat014,项目名称:geleyi,代码行数:20,代码来源:infusionsoft.php


示例12: _e

<div class="op-bsw-grey-panel-content op-bsw-grey-panel-no-sidebar cf">
<?php 
if (op_get_option('gotowebinar_api_key') === false) {
    ?>
	<label for="op_sections_email_marketing_services_gotowebinar_api_key" class="form-title"><?php 
    _e('GoToWebinar API key', OP_SN);
    ?>
</label>
    <p class="op-micro-copy"><?php 
    _e('Copy GoToWebinar API key here.', OP_SN);
    ?>
</p>
    <?php 
    op_text_field('op[sections][email_marketing_services][gotowebinar_api_key]', op_get_option('gotowebinar_api_key'));
} else {
    ?>
    <label for="op_sections_email_marketing_services_gotowebinar_access_token" class="form-title"><?php 
    _e('GoToWebinar API connection', OP_SN);
    ?>
</label>
    <?php 
    if (op_get_option('gotowebinar_access_token') === false || op_get_option('gotowebinar_organizer_key') === false) {
        ?>
    <p class="op-micro-copy">
    	<?php 
        _e('GoToWebinar is disconnected.', OP_SN);
        ?>
 <a href="<?php 
        echo admin_url('admin.php?action=' . OP_GOTOWEBINAR_AUTH_URL);
        ?>
&authorize=1"><?php 
开发者ID:denis-chmel,项目名称:wordpress,代码行数:31,代码来源:gotowebinar.php


示例13: _e

    ?>
</span>
    <?php 
}
?>
    
    <label for="op_sections_site_footer_copright" class="form-title"><?php 
_e('Copyright Information', OP_SN);
?>
</label>
    <p class="op-micro-copy"><?php 
_e('Copyright information will show on all pages in the footer, when the footer is activated.', OP_SN);
?>
</p>
    <?php 
op_text_field('op[sections][site_footer][copyright]', op_default_option('site_footer', 'copyright'));
?>
    <div class="clear"></div>
    
    <label for="op_sections_site_footer_disclaimer" class="form-title"><?php 
_e('Disclaimer', OP_SN);
?>
</label>
    <p class="op-micro-copy"><?php 
_e('Disclaimer will show on all pages in the footer, when the footer is activated.', OP_SN);
?>
</p>
    <?php 
op_text_area('op[sections][site_footer][disclaimer]', stripslashes(op_default_option('site_footer', 'disclaimer')));
?>
</div>
开发者ID:shahadat014,项目名称:geleyi,代码行数:31,代码来源:site_footer.php


示例14: _e

<div class="op-bsw-grey-panel-content op-bsw-grey-panel-no-sidebar cf">
    <?php 
if ($error = $this->error('op_sections_site_footer')) {
    ?>
    <span class="error"><?php 
    echo $error;
    ?>
</span>
    <?php 
}
?>
    
    <label for="op_sections_social_integration_facebook_app_id" class="form-title"><?php 
_e('Facebook App ID', OP_SN);
?>
</label>
    <p class="op-micro-copy"><?php 
_e('If you would like to integrate Facebook services with your website, please enter your Facebook APP ID below. Follow our guide to setting up a Facebook APP ID ', OP_SN);
?>
<a target="_blank" href="https://optimizepress.zendesk.com/hc/en-us/articles/200874728-Setup-Facebook-Comments-Facebook-App-ID"><?php 
_e('here', OP_SN);
?>
</a></p>
    <?php 
op_text_field('op[sections][social_integration][facebook_app_id]', op_default_option('social_integration', 'facebook_app_id'));
?>
    <div class="clear"></div>
</div>
开发者ID:denis-chmel,项目名称:wordpress,代码行数:28,代码来源:social_integration.php


示例15: _e

</span>
    <?php 
}
?>

	<p class="op-micro-copy"><?php 
_e('To be able to remove Flowplayer logo from the video player, you need to have it licensed for this domain. License key and commercial version files can be uploaded here.', OP_SN);
?>
</p>

	<label for="op_sections_flowplayer_license_license_key" class="form-title"><?php 
_e('License key', OP_SN);
?>
</label>
	<?php 
op_text_field('op[sections][flowplayer_license][license_key]', op_default_option('flowplayer_license', 'license_key'));
?>

	<label for="op_sections_flowplayer_license_js_file" class="form-title"><?php 
_e('HTML5 commercial version file (JS)', OP_SN);
?>
</label>
    <?php 
op_upload_field('op[sections][flowplayer_license][js_file]', op_default_option('flowplayer_license', 'js_file'));
?>

    <label for="op_sections_flowplayer_license_swf_file" class="form-title"><?php 
_e('Flash commercial version file (SWF)', OP_SN);
?>
</label>
    <?php 
开发者ID:denis-chmel,项目名称:wordpress,代码行数:31,代码来源:flowplayer_license.php


示例16: _e

<div class="op-bsw-grey-panel-content op-bsw-grey-panel-no-sidebar cf">
    <?php 
if ($error = $this->error('op_sections_social_integration_facebook_app_id')) {
    ?>
    <span class="error"><?php 
    echo $error;
    ?>
</span>
    <?php 
}
?>
    
    <label for="op_sections_facebook_app_id" class="form-title"><?php 
_e('Facebook App ID', OP_SN);
?>
</label>
    <p class="op-micro-copy"><?php 
_e('If you would like to integrate Facebook services with your website, please enter your Facebook APP ID below. Follow our guide to setting up a Facebook APP ID ', OP_SN);
?>
<a target="_blank" href="https://optimizepress.zendesk.com/hc/en-us/articles/200874728-Setup-Facebook-Comments-Facebook-App-ID"><?php 
_e('here', OP_SN);
?>
</a></p>
    <?php 
op_text_field('op[sections][facebook_app_id]', op_default_option('comments', 'facebook', 'id'));
?>
    <div class="clear"></div>
</div>
开发者ID:denis-chmel,项目名称:wordpress,代码行数:28,代码来源:facebook_app_id.php


示例17: _e

<div class="op-bsw-grey-panel-content op-bsw-grey-panel-no-sidebar cf">        
    <label for="op_sections_email_marketing_services_icontact_username" class="form-title"><?php 
_e('iContact Username', OP_SN);
?>
</label>
    <?php 
op_text_field('op[sections][email_marketing_services][icontact_username]', op_get_option('icontact_username'));
?>
    <label for="op_sections_email_marketing_services_icontact_password" class="form-title"><?php 
_e('API password', OP_SN);
?>
</label>
    <?php 
op_text_field('op[sections][email_marketing_services][icontact_password]', op_get_option('icontact_password'));
?>
    <p class="op-micro-copy"><a href="https://app.icontact.com/icp/core/externallogin?sAppId=<?php 
echo OP_ICONTACT_APP_ID;
?>
" target="_blank"><?php 
_e('Get API password', OP_SN);
?>
</a></p>
    <p class="op-note"><em><?php 
_e('Note: You need to allow external program to access your account and generate password for the API access.', OP_SN);
?>
</em></p>
</div>
开发者ID:denis-chmel,项目名称:wordpress,代码行数:27,代码来源:icontact.php



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
上一篇:
PHP op_tpl函数代码示例发布时间:2022-05-15
下一篇:
PHP op_t函数代码示例发布时间: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