how i can add new font in pagelines?
this is correct:
add_filter ( 'pagelines_foundry', 'my_google_font' );
function my_google_font( $thefoundry ) {
$myfont = array( 'Ubuntu' => array(
'name' => 'Ubuntu',
'family' => '"Ubuntu", arial, serif',
'web_safe' => true,
'google' => true,
'monospace' => false
),
'Maven' => array(
'name' => 'Maven Pro',
'family' => '"Maven Pro", sans-serif',
'web_safe' => true,
'google' => true,
'monospace' => false
)
);
return array_merge( $thefoundry, $myfont );
}











