Ver Mensaje Individual
  #1 (permalink)  
Antiguo 04/06/2018, 04:01
yopmail
 
Fecha de Ingreso: agosto-2014
Mensajes: 294
Antigüedad: 9 años, 7 meses
Puntos: 4
Pregunta Avatar en un .tpl?

Hola, cuando intento poner un codigo PHP en un archivo .tpl me lo pone en comentarios <-- --> alguna idea por que?




Codigo Avatar


Código PHP:
<?php echo get_avatar(get_the_author_meta('user_ID'), '40'); ?>

Archivo .tpl


Código PHP:
<div class="{{ messageClasses }}" data-id="{{ messageId }}" data-chat-user-id="{{ messageChatUserId }}"
    <
span class="wcMessageUser" {% if isTextColorSetForUserName %}style="color:{{ textColor }}"{% endif isTextColorSetForUserName %}>
        {{ 
renderedUserName }}
    </
span>
    <
span class="wcMessageTime" data-utc="{{ messageTimeUTC }}"></span>
    
    <
br class='wcClear' />
    <
span class="wcMessageContent" {% if isTextColorSetForMessage %}style="color:{{ textColor }}"{% endif isTextColorSetForMessage %}>
        {{ 
messageContent }}
        
        {% if 
showDeleteButton %}
            <
a href="javascript://" class="wcAdminAction wcMessageDeleteButton" data-id="{{ messageId }}" title="Delete the message"><img src='{{ baseDir }}/gfx/icons/x.png' class='wcIcon' /></a>
        {% endif 
showDeleteButton %}
        {% if 
showBanButton %}
            <
a href="javascript://" class="wcAdminAction wcUserBanButton" data-id="{{ messageId }}" title="Ban this user"><img src='{{ baseDir }}/gfx/icons/block.png' class='wcIcon' /></a>
        {% endif 
showBanButton %}
        {% if 
showKickButton %}
            <
a href="javascript://" class="wcAdminAction wcUserKickButton" data-id="{{ messageId }}" title="Kick this user"><img src='{{ baseDir }}/gfx/icons/kick.png' class='wcIcon' /></a>
        {% endif 
showKickButton %}
        <
br class='wcClear' />
    </
span>
</
div

Gracias