Translate plotly express figure to plotly figure?

I am new to plotly and plotly express, but I managed to create a very nice figure with plotly express, as described in the topic here

Unfortunately, I need now to insert this figure into a subplot and plotly express doesnโ€™t fully support subplots. So my question is - how do you translate this particular plotly express syntax into plotly syntax?:

px.bar(df_grp, x='temperature', y='humidity', color='day',barmode='overlay', opacity=1, range_y=[0.86,1.0], category_orders={"day": ["Thur", "Sun", "Sat", "Fri"]})