Añadir enlace a info
Publicado por angel (90 intervenciones) el 15/02/2019 20:11:20
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public function bottom_footer_content() {
$hestia_general_credits = get_theme_mod(
'hestia_general_credits',
sprintf(
/* translators: %1$s is Theme Name, %2$s is WordPress */
esc_html__( '%1$s | Developed by %2$s', 'hestia' ),
esc_html__( 'Info', 'hestia' ),
/* translators: %1$s is URL, %2$s is WordPress */
sprintf(
'<a href="%1$s" rel="nofollow">%2$s</a>',
esc_url( __( 'https://web.es', 'hestia' ) ),
'La Bamba'
)
)
);
Me gustaría añadir un enlace a Info. Linea esc_html__( 'Info', 'hestia' ),
pero no tener futuros problemas al actualizar el tema de wordpress.
Valora esta pregunta
0