Hi PickPlugins! Thanks for the quick reply. I am trying to display in a page a custom field named “birthdate”. As I understand, you will want to add that custom field in the Layout editor by using this code:
function post_grid_filter_layout_items_extra($layout_items){
$layout_items['title_new'] = array(
'name'=>'Tile New',
'dummy_html'=>'New Title',
'css'=>'display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;',
);
return $layout_items;
}
add_filter('post_grid_filter_layout_items','post_grid_filter_layout_items_extra');
…I tried pasting this in functions.php but I can’t seem to make it work.
Also, I would like to ask if the the Layout editor settings can’t be different in two or more grids? I am asking because I have lots of grids in my page and if I edit one grid layout, it applies to all grids. Does it really work that way? Thanks!