Default font in 2012?

Easest way without investing too much effort and not worrying about coding ethics (like clean code and so on) you could simply use the “Customizer”. In your frontend, click on the “Customizer” in the upper left corner in the admin bar. Then, scroll/go to the “Additional CSS” section and add body { font-family: yourFontFamily!important; } … Read more

How to stop the Divi theme from loading Google fonts [closed]

wp_dequeue_style() should help you. You should dequeue style and enqueue your fonts. wp_dequeue_style(‘et-core-main-fonts’); wp_enqueue_style(‘your_fonts_handle’, ‘path_to_your_fonts’); Or redeclare function with your fonts. et_core_load_main_fonts() { $fonts_url = et_core_get_main_fonts(); if ( empty( $fonts_url ) ) { return; } wp_enqueue_style( ‘et-core-main-fonts’, esc_url_raw( ‘path_to_your_style’ ), array(), null ); }

How i can use font in wordpress?

On WordPress, all paragraphs look the same. But it is also true that on WordPress, you can change everything. So there are a few solutions but you will need a little development. Personally, I would use Flexible Content fields of the ACF plugin. Hoping I could help you.