php 自定义现场连接(Themer)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 自定义现场连接(Themer)相关的知识,希望对你有一定的参考价值。

<?php echo $settings->text; ?>
<?php // do not copy this line, start with line 3

'text' => array(
	'type'          => 'text',
	'label'         => 'My Text Field',
	'connections'   => array( 'string', 'html', 'url' )
)
<?php // do not copy this line, start with line 3

'text' => array(
	'type'          => 'text',
	'label'         => 'My Text Field',
	'connections'   => array( 'string' )
)
<?php // do not copy this line, start with line 3

FLPageData::add_group('my_group', array(
    'label' => 'My Group'
));
<?php // do not copy this line, start with line 3

FLPageData::add_post_property_settings_fields('my_connection_form', array(
    'css'    => 'http://www.mysite.com/path-to-settings.css',
    'js'     => 'http://www.mysite.com/path-to-settings.js',
    'my_setting' => array(
        'type'          => 'text',
        'label'         => 'My Setting'
    )
));
<?php // do not copy this line, start with line 3

add_action('fl_page_data_add_properties', function () {
    FLPageData::add_post_property('my_connection', array(
        'label'   => 'My Connection',
        'group'   => 'general',
        'type'    => 'string',
        'getter'  => 'my_connection_getter',
                'form'    => 'my_connection_form'
    ));
});

function my_connection_getter()
{
    return 'My text';
}

以上是关于php 自定义现场连接(Themer)的主要内容,如果未能解决你的问题,请参考以下文章

php 在Beaver Themer中的作者档案中选择当前作者的帖子模块(自定义查询)

Sencha Themer

php 在搜索中显示搜索的术语Themer布局

php 在Beaver Themer中隐藏空行和模块

php 为主题添加页眉,页脚和部件支持(Themer)

php 这与Beaver Themer和Astra Theme一起使用[my_breadcrumb](即:将短代码插入到Themer Part中以显示面包屑)