Looking at the source code of the function it seems that they make individual plots with ggplot when features is > 1 and then use patchwork to stitch them. Hence, use patchwork functionality to apply standard ggplot manipulations.
Standard ggplot would be plot + theme(plot.title = element_text(size = 40, face = "bold")) and in patchwork it's plot & theme(plot.title = element_text(size = 40, face = "bold")). Mind the & rather than +. You need to run library(patcwork) of course fist.
Wondering why after almost 13 years in this community you cannot figure these sorts of things out yourself... not up to a little detective challenge here and there? It's fun.
thx for the explanation.
I did look at the function and I also read in the help page, that you get a patchwork object, only when using
combine = TRUE
.I also can't see in the function script, where they look at how many features I input.