• Hai, i got some trouble in my wordpress post when i put link in my post.

    first, i installed WPMU in my server, and make some wordpress with subdomain.

    in my subdomain wordpress, i add new post and insert some word for my article. and then i put link to other pages in my site

    for example:
    my subdomain WP is subdomain.wordpress.com
    and i put link to my post to other page in my wp subdomain like https://subdomain.wordpress.com/post-name.html.

    And then the problem is came up. the link is not show in my post. but the link will appear if i change the link with other domain like https://otherdomain.com/post-other.htm

    can anybody solve this?

Viewing 11 replies - 1 through 11 (of 11 total)
  • Edit the post you have created and you will see the option just below the title as view post. Click the button to check if you are able to view the post from there.

    Thread Starter erikdewangga

    (@erikdewangga)

    @chandanonline4u This is not solved problem, the link just not show

    May be I am not clear with your problem. Can you share your site link?

    Thread Starter erikdewangga

    (@erikdewangga)

    This is my post link in my wp subdomain. in the end of post i post 1 link to go another pages, but not shown

    https://rahasiauanginternet.pesutweb.com/cara-mendapatkan-uang-dari-internet/

    Can you share what you writing as link and where in wordpress visual or html. And If it is possible please share your single.php code.

    Thread Starter erikdewangga

    (@erikdewangga)

    i write this link in my post
    <a href="https://pesutweb.com/">Klik Disini Untuk Bukti Penghasilan</a>
    but you can’t see it.

    and this is the single page code

    <?php get_header(); ?>
    
    <div id="isigede">
    <div id="isi">
    	<?php if (have_posts()) :?>
    		<?php $postCount=0; ?>
    		<?php while (have_posts()) : the_post();?>
    			<?php $postCount++;?>
    		<div class="entrytitle">
    		<?php $option_theme = get_theme_option('728x90_ads2_act'); if(($option_theme == '') || ($option_theme == 'No')) { ?>
    <?php } else { ?><?php echo get_theme_option('728x90_ads'); ?><?php } ?>
    		<div class="small"><a href="<?php bloginfo('home'); ?>">Home</a> &raquo; <?php the_category(' &raquo; ')?> &raquo; <?php the_title(); ?></div>
    		</div>
    
    <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h1>
    <div class="small"><?php the_time('F jS, Y') ?> <?php the_category(', ') ?> <?php edit_post_link('Edit', '', ''); ?></div>		
    
    		<div id="iklan1">
    		<?php $option_theme = get_theme_option('336x280_ads2_act'); if(($option_theme == '') || ($option_theme == 'No')) { ?>
    <?php } else { ?><?php echo get_theme_option('336x280_ads'); ?><?php } ?></div>
    			<?php the_content(); ?>
    
    			<div style="clear: both"></div>
    		<?php $bookmark_stats_act = get_theme_option('bookmark_stats_act'); if(($bookmark_stats_act == '') || ($bookmark_stats_act == 'Hide')) { ?>
    <?php } else { ?>
    <?php include (TEMPLATEPATH . '/bookmark.php'); ?>
    <?php } ?>
    	<?php $comment_stats_act = get_theme_option('comment_stats_act'); if(($comment_stats_act == '') || ($comment_stats_act == 'Hide')) { ?>
    <?php } else { ?>
    <div class="commentsblock">
    		<center><?php comments_template(); ?></center>
    	</div>
    <?php } ?>
    	<br>
    	<div class="small">Tags &raquo; <?php the_tags(' ', ', ', ''); ?></div>
    	<?php endwhile; ?>
    
    	<?php else : ?>
    		<h2>Not Found</h2>
    		<div class="entrybody">Sorry, but you are looking for something that isn't here.</div>
    <?php endif; ?>
    	<div style="clear: both"></div>
    <?php $related_stats_act = get_theme_option('related_stats_act'); if(($related_stats_act == '') || ($related_stats_act == 'Hide')) { ?>
    <?php } else { ?>
    <?php include (TEMPLATEPATH . '/related.php'); ?>
    <?php } ?>
    <div style="clear: both"></div><br>
    </div>
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    Try replacing “the_content()” function in your code with the following code:

    $content = apply_filters('the_content', $post->post_content);
    echo $content;

    Thread Starter erikdewangga

    (@erikdewangga)

    I put `<?php $content = apply_filters(‘the_content’, $post->post_content);
    echo $content; ?>`

    Still not shown

    Thread Starter erikdewangga

    (@erikdewangga)

    I want to ask, what exactly causes the link does not appear in the post?

    Can you share your WordPress login details to my email id (cha061b2117@gmail.com)? I never heard about this problem. It only happens in case of post_excerpt function to show writeup.

    Thread Starter erikdewangga

    (@erikdewangga)

    Sorry, but i dont want to give anybody my password :). sorry for that. But i must say very thankyou you want help here. ??

    and i can solve this problem lately…
    i just delete my subdomain site. and make new one. and try to make post and insert link on it. and the link shown :). i dont know where the problem is, but it works. so thakns before mate ??

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Post Link Problem’ is closed to new replies.