列削除

このページのカスタマイズ

/** ==================================================
 * Filter of Fixed Bottom Menu
 *
 * fbm_column
 * @param int $column  column.
 */
function fixed_bottom_menu_column_remove( $column ) {

	if ( 118 === get_the_ID() || 125 === get_the_ID() ) {
		$column = 4;
	}
	return $column;

}
add_filter( 'fbm_column', 'fixed_bottom_menu_column_remove', 10, 1 );

投稿 ID を指定して、列を4列にします。