You can use the theme() with the argument "plot.title".
In the following example, the title size is set to 12.
plt <- ggplot(df, aes(x=x, y=y,...)) +theme(plot.title = element_text(size=12))
plt <- ggplot(df, aes(x=x, y=y,...)) +
theme(plot.title = element_text(size=12))