• So here’s my problem. I tried doing this according to the instructions provided in the other thread on creating a “Read More” link and it ignored the stylesheets. I want to put the excerpt into this code, but don’t know how.

    global $post;
    theme_post_wrapper(
    		array(
    			'id' => theme_get_post_id(),
    			'class' => theme_get_post_class(),
    			'thumbnail' => theme_get_post_thumbnail(),
    			'title' => '<a href="' . get_permalink($post->ID) . '" rel="bookmark" title="' . strip_tags(get_the_title()) . '">' . get_the_title() . '</a>',
    			'heading' => theme_get_option('theme_' . (is_home() ? 'posts' : 'single') . '_article_title_tag'),
    			'before' => theme_get_metadata_icons('date,author,edit', 'header'),
    			'content' => theme_get_content(),
    			'after' => theme_get_metadata_icons('comments', 'footer')
    		)
    );
    ?>

    Any help on this would be greatly appreciated. Thanks in advance.

    Martin

    https://www.ads-software.com/extend/plugins/posts-in-page/

  • The topic ‘"Read More…" link’ is closed to new replies.