Title: moedeboum's Replies | WordPress.org

---

# moedeboum

  [  ](https://wordpress.org/support/users/moedeboum/)

 *   [Profile](https://wordpress.org/support/users/moedeboum/)
 *   [Topics Started](https://wordpress.org/support/users/moedeboum/topics/)
 *   [Replies Created](https://wordpress.org/support/users/moedeboum/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/moedeboum/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/moedeboum/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/moedeboum/engagements/)
 *   [Favorites](https://wordpress.org/support/users/moedeboum/favorites/)

 Search replies:

## Forum Replies Created

Viewing 11 replies - 1 through 11 (of 11 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] Document Library Pro + ACF don’t work after updating Polylang](https://wordpress.org/support/topic/document-library-pro-acf-dont-work-after-updating-polylang/)
 *  [moedeboum](https://wordpress.org/support/users/moedeboum/)
 * (@moedeboum)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/document-library-pro-acf-dont-work-after-updating-polylang/#post-18300941)
 * Hey [@svw123](https://wordpress.org/support/users/svw123/),
 * I had the same problem and was able to solve the problem. You have to assign 
   the individual documents, categories and taxonomies to a language. These will
   then be displayed again.
 * I’m now trying to find a solution for translating the documents. I don’t want
   to create them all individually. 🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Openstrap] different language](https://wordpress.org/support/topic/different-language-3/)
 *  [moedeboum](https://wordpress.org/support/users/moedeboum/)
 * (@moedeboum)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/different-language-3/#post-4625816)
 * Did you solve the problem?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [get_permalink returning wrong link in excerpt](https://wordpress.org/support/topic/get_permalink-returning-wrong-link-in-excerpt/)
 *  Thread Starter [moedeboum](https://wordpress.org/support/users/moedeboum/)
 * (@moedeboum)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/get_permalink-returning-wrong-link-in-excerpt/#post-3863487)
 * It doesnt work!
 * It is so weird: every permalink above the <?php the_excerpt(); ?> works fine,
   but if i put the permalink below the <?php the_excerpt(); ?> it doesnt work!!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [get_permalink returning wrong link in excerpt](https://wordpress.org/support/topic/get_permalink-returning-wrong-link-in-excerpt/)
 *  Thread Starter [moedeboum](https://wordpress.org/support/users/moedeboum/)
 * (@moedeboum)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/get_permalink-returning-wrong-link-in-excerpt/#post-3863330)
 * This is the Code of the Page:
 *     ```
       <?php
       	/**
       	 * Template Name: Home-2
       	 * A custom page template forthe Home-2-Page.
       	 */
       get_header(); ?>
   
       <div id="content">
        <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
         <div id="intro-text-home">
          <?php the_content(); ?>
          <?php endwhile; ?>
         </div>
         <!--intro-text-->
        <div id="blog-intro-home"><!--blog-header-->
         <div id="blog-article-home">
           <?php $args = array( 'numberposts' => 1, 'order'=> 'DESC', 'orderby' => 'post_date' ); $postslist = get_posts( $args ); foreach ($postslist as $post) :  setup_postdata($post); ?>
           <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
           <?php the_date('d', '<span class="day">', '</span>'); ?>
           <span class="month"><?php the_time('M'); ?></span>
           <span class="author">gepostet von <?php the_author(); ?></span>
           <br />
           <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail (thumbnail); ?></a>
           <br /><br />
           <?php the_excerpt(); ?>
         </div>
         <!--blog-article-->
        </div>
        <!--blog-intro-->
   
       <?php endforeach; ?>
   
       <?php get_footer(); ?> 
   
       </div>
       <!--end content-->
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [get_permalink returning wrong link in excerpt](https://wordpress.org/support/topic/get_permalink-returning-wrong-link-in-excerpt/)
 *  Thread Starter [moedeboum](https://wordpress.org/support/users/moedeboum/)
 * (@moedeboum)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/get_permalink-returning-wrong-link-in-excerpt/#post-3863291)
 * I also use this function!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [get_permalink returning wrong link in excerpt](https://wordpress.org/support/topic/get_permalink-returning-wrong-link-in-excerpt/)
 *  Thread Starter [moedeboum](https://wordpress.org/support/users/moedeboum/)
 * (@moedeboum)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/get_permalink-returning-wrong-link-in-excerpt/#post-3863279)
 * There never has been a filter.
 * This is the code of the original Twenty-Ten Theme:
 *     ```
       /**
        * Returns a "Continue Reading" link for excerpts
        *
        * @since Twenty Ten 1.0
        * @return string "Continue Reading" link
        */
       function twentyten_continue_reading_link() {
       	return ' <a href="'. get_permalink() . '">' . __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) . '</a>';
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [get_permalink returning wrong link in excerpt](https://wordpress.org/support/topic/get_permalink-returning-wrong-link-in-excerpt/)
 *  Thread Starter [moedeboum](https://wordpress.org/support/users/moedeboum/)
 * (@moedeboum)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/get_permalink-returning-wrong-link-in-excerpt/#post-3863274)
 * Do u mean in my Template?
 * I use this code:
    `<?php the_excerpt(); ?>`
 * And the continue_reading button is created by the function twentyten_continue_reading_link()
   in my function.php
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [get_permalink returning wrong link in excerpt](https://wordpress.org/support/topic/get_permalink-returning-wrong-link-in-excerpt/)
 *  Thread Starter [moedeboum](https://wordpress.org/support/users/moedeboum/)
 * (@moedeboum)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/get_permalink-returning-wrong-link-in-excerpt/#post-3863270)
 * The first months it worked fine.
    My problem: I dont now what caused the “function-
   crash”
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [get_permalink returning wrong link in excerpt](https://wordpress.org/support/topic/get_permalink-returning-wrong-link-in-excerpt/)
 *  Thread Starter [moedeboum](https://wordpress.org/support/users/moedeboum/)
 * (@moedeboum)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/get_permalink-returning-wrong-link-in-excerpt/#post-3863269)
 * No, i created my own theme.
    But i used the twenty-ten as basis
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Display Widgets] Bug for checkbox save](https://wordpress.org/support/topic/bug-for-checkbox-save/)
 *  [moedeboum](https://wordpress.org/support/users/moedeboum/)
 * (@moedeboum)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/bug-for-checkbox-save/#post-3580333)
 * Vielen Dank! 😉
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Display Widgets] Bug for checkbox save](https://wordpress.org/support/topic/bug-for-checkbox-save/)
 *  [moedeboum](https://wordpress.org/support/users/moedeboum/)
 * (@moedeboum)
 * [12 years, 12 months ago](https://wordpress.org/support/topic/bug-for-checkbox-save/#post-3580331)
 * Hi Johann,
 * falls Du deutsch sprechen solltest:
    Kannst Du den genauen Code, den man ersetzen
   muss, bitte posten.
 * English:
    Could you please post the right code in here. I couldnt understand 
   your solution…
 * Thank you

Viewing 11 replies - 1 through 11 (of 11 total)