Reply To: Different layouts for admins and visitors

#19825
Peter_R
Participant

Hi Daniel, thanks for your support.
I do not know where this function exists.
According to the date of pinboard file, I made changes only to:
– functions.php: I changed to:
function pinboard_excerpt_more($more) {
return ‘ ID) . ‘ “> …weiterlesen‘;
}
endif;
I changed also:
<hgroup id=”current-location”>
<h6 class=”prefix-text”><?php _e( ‘Sie sehen das Kapitel ‘, ‘pinboard’ ); ?> </h6>

– single.php
I removed: <?php pinboard_entry_meta(); ?>
I added twice, top and bottom:
<div class=”navigation” style=”padding-top: 15px; padding-bottom: 10px;”>
<div style=”float: left;”><?php previous_post_link(‘« %link’) ?></div>
<div style=”float: right;”><?php next_post_link(‘%link »’) ?></div>
</div>
I added:
<?php $u_time = get_the_time(‘U’);
$u_modified_time = get_the_modified_time(‘U’);
if ($u_modified_time != $u_time) {
echo “Letzter Stand: “;
the_modified_time(‘F Y’);
echo “. “; } ?>

– sidebar-top.php, index.php: I dont know, if I changed them.

Could it be a WordPress problem. The reason, I am asking is: I am designing a different wordpress installation. I played around with different themes. After a while, I experienced a similar problem: The menu shown was different for admins and visitors.

Can I change anything in database to solve the problem?