Home Forums WoodMart support forum label on grid

label on grid

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #565802

    kowalski
    Participant

    Hola, es posible que en la etiqueta de fecha de los post en las imágenes ( adjunto captura) aparezca también el año? No sé si la plantilla tiene esta opción. Por defecto me sale la que se ve y tampoco sé dónde buscar las opciones. Gracias y perdona haceros perder tiempo con estos detalles.
    Saludos
    Joanna

    Attachments:
    You must be logged in to view attached files.
    #565838

    Hello,

    Try to add the following PHP code snippet to the child theme functions.php file to do this:

    function woodmart_post_date( $args ) {
    	$has_title = get_the_title() != '';
    	$attr      = '';
    	if ( ! $has_title && ! is_single() ) {
    		$url  = get_the_permalink();
    		$attr = 'window.location=\'' . $url . '\';';
    	}
    	$classes  = '';
    	$classes .= ' ' . $args['style'];
    	$classes .= woodmart_get_old_classes( ' woodmart-post-date' );
    	?>
    		<div class="post-date wd-post-date<?php echo esc_attr( $classes ); ?>" onclick="<?php echo esc_attr( $attr ); ?>">
    			<span class="post-date-day">
    				<?php echo get_the_time( 'd' ); ?>
    			</span>
    			<span class="post-date-month">
    				<?php echo get_the_time( 'M' ); ?>
    			</span>
    			<span class="post-date-year">
    				<?php echo get_the_time( 'Y' ); ?>
    			</span>
    		</div>
    	<?php
    }

    Best Regards.

    #565883

    kowalski
    Participant

    Estupendo, ya lo tengo. Muchas gracias!

    Attachments:
    You must be logged in to view attached files.
    #565989

    Most Welcome!!!.

    I’m so happy to hear you are pleased with the Theme and Support. XTEMOS strives to deliver the best customer experience, and it makes our day to hear we have accomplished that.

    We count ourselves lucky to have you as a customer. You can always reach us at any time. We are always here to help you.

    Thanks for contacting us.
    Have a great day.

    Topic Closed.
    Best Regards.

Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘label on grid’ is closed to new replies.