• jarmas501

    (@jarmas501)


    Buenos días. Tengo un blog creado en WordPress con el tema Genesis y el tema hijo Simplux. En un artículo tengo un archivo en pdf que se muestra después de la etiqueta «leer más». Cuando accedo al artículo por las categorías funciona «leer más», pero cuando lo hago por entradas recientes, «leer más» no funciona. Probé accediendo al artículo directamente desde su URL y tampoco funciona «leer más» ¿Cuál pudiera ser el problema?
    La URL del sitio es «http://metomat.890m.com»
    Saludos.

Viendo 1 respuesta (de un total de 1)
  • Iniciador del debate jarmas501

    (@jarmas501)

    El contenido del archivo single.php es el siguiente:
    <?php

    /** Force full width content layout */
    add_filter( ‘genesis_pre_get_option_site_layout’, ‘__genesis_return_full_width_content’ );

    /** Remove the post info function */
    remove_action( ‘genesis_before_post_content’, ‘genesis_post_info’ );

    /** Remove the author box on single posts */
    remove_action( ‘genesis_after_post’, ‘genesis_do_author_box_single’ );

    /** Remove the post meta function */
    remove_action( ‘genesis_after_post_content’, ‘genesis_post_meta’ );

    /** Remove the comments template */
    remove_action( ‘genesis_after_post’, ‘genesis_get_comments_template’ );

    genesis();

Viendo 1 respuesta (de un total de 1)
  • El debate ‘"Leer mas" no funciona en single.php’ está cerrado a nuevas respuestas.