mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
12 lines
277 B
PHP
12 lines
277 B
PHP
|
<?php
|
||
|
/** functions.php
|
||
|
* continues from parent functions.php
|
||
|
*/
|
||
|
function the_bootstrap_credits() {
|
||
|
printf(
|
||
|
'<span class="credits_alignleft">' . 'Todos los textos publicados en esta web pueden ser reproducidos en la manera que se considere oportuna.' . '</span>'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
|