diff options
author | Heckyel <heckyel@openmailbox.org> | 2017-02-22 18:06:06 -0500 |
---|---|---|
committer | Heckyel <heckyel@openmailbox.org> | 2017-02-22 18:06:06 -0500 |
commit | d7ce4266759c9c8c9943ceab74feee46ceac96ab (patch) | |
tree | dd27cc0dde1df1bc3bf0b138aa63d86ca042683e /content-search.php | |
parent | 855e7ef478eab7c4f8f0f20215de940e56d8ff73 (diff) | |
download | lidra-theme-d7ce4266759c9c8c9943ceab74feee46ceac96ab.tar.lz lidra-theme-d7ce4266759c9c8c9943ceab74feee46ceac96ab.tar.xz lidra-theme-d7ce4266759c9c8c9943ceab74feee46ceac96ab.zip |
agregando enlace de autor en las entradas
Diffstat (limited to 'content-search.php')
-rw-r--r-- | content-search.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/content-search.php b/content-search.php index 94bcdb3..abcab42 100644 --- a/content-search.php +++ b/content-search.php @@ -29,7 +29,7 @@ printf (' </div> <div class="info"> <h2 class="titulo"><a href="%s">%s</a></h2> - <p class="fecha">%s</p> + <p class="fecha">%s ' . __('por', ('libre')) . ' <a href="%s" target="_blank">%s</a></p> <div class="extracto">%s</div> <div class="categorias"> %s @@ -47,6 +47,8 @@ printf (' get_the_permalink(), get_the_title(), get_the_time( 'd-M-Y' ), + get_the_author_meta('user_url'), + get_the_author(), get_the_excerpt(), //the_category() get_the_category_list() |