php 如何在创世纪2.0框架中添加后窗口小部件区域 - WordPress提示

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 如何在创世纪2.0框架中添加后窗口小部件区域 - WordPress提示相关的知识,希望对你有一定的参考价值。

/** STEP 1 - Add the after post section */
genesis_register_sidebar( array(
	'id'		=> 'afterpost',
	'name'		=> __( 'After Post  Widget', 'child theme' ),
	'description'	=> __( 'This is the after post section.', 'child theme' ),
) );
 
/** STEP 2 - Add Hook to show widgets after Post Section. */
add_action( 'genesis_entry_footer', 'custom_add_after_post_box', 15 );
function custom_add_after_post_box() {
	if ( is_singular( 'post' ) )
	genesis_widget_area( 'afterpost', array(
		'before' => '<div id="afterpost">',
		 'after'	 => '</div>',
	) );
}

/** NOTE: I added the 'after' div in step 2 */

以上是关于php 如何在创世纪2.0框架中添加后窗口小部件区域 - WordPress提示的主要内容,如果未能解决你的问题,请参考以下文章

php 从Beaver Builder 2.0 UI取消设置修订并将窗口小部件从窗口小部件移动到标准版或高级版。

php 后小部件后的创世纪。

如何在 GTK 中更新(绘制)一个小部件和仅这个小部件

wxPython:在向框架添加一个窗口小部件时,窗口小部件定位不正确

如何重置QGridLayout中窗口小部件的列跨度?

php 将活动类添加到标记云窗口小部件中的当前标记。