Hi Don.
The twenty theme wouldn’t strip links. How are you uploading and posting the links?
Don when inside the post click the add video ( second icon from left, top of post below title field ) and simply upload the file and insert into post, then publish.
WordPress will acknowledge the file and create a link for download.
[Link removed – this is not an advertising forum.]
Jogfly,
I’m afraid I received no love from your suggestion.
I first put the links in by using the link button. The links were html-constructed correctly.
I just tried your suggestion — using the video icon — and the link was constructed identical to the previous links. Again I did a “preview” and the links showed properly and worked. BUT when the post was updated, the links disappeared again.
TwentyTen uses the_exerpt() in the category archives, which does strip any html tags from the shortened content.
to change this, you need to edit loop.php; find this section:
<?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>
<div class="entry-summary">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php else : ?>
<div class="entry-content">
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
</div><!-- .entry-content -->
<?php endif; ?>
change the first line of the above code to:
<?php if ( is_search() ) : // Only display excerpts for search. ?>
That did it! Everything works a treat.
Many thanks.
Don Simmons