Hola como andan, he instalado en un blog este theme at-the-restauran-10 y no puedo encontrar ni en el código ni en los widgets la foma de editar y eliminar el categories y el blogroll de la sidebar rigth
lo tengo acá:
http://www.mvlsistemas.com.ar/montana/ Código PHP:
!-- Sidebar -- >
< div class="sidebar" >
< h3 >Páginas< /h3 >
<ul>
< ?php wp_list_pages('title_li='); ? >
</ul>
< h3 >Archivos< /h3 >
<ul>
< ?php wp_get_archives('type=monthly'); ? >
</ul>
< /div >
< !-- Sidebar -- >
Código PHP:
< ?php get_header(); ? >
< ?php get_sidebar(); ? >
< !-- Content -- >
< div id="content" >
< ?php if (have_posts()) : ? >
< ?php while (have_posts()) : the_post(); ? >
< !-- Post -- >
< div class="post" id="post-< ?php the_ID(); ? >" >
< div class="post-title" >
< div class="post-date" >
< span >< ?php the_time('d') ? >< /span >
< ?php the_time('M') ? >
< /div >
< h2 ><a>" rel="bookmark" title="Permanent Link to < ?php the_title_attribute(); ? >" >< ?php the_title(); ? ></a>< /h2 >
Author: < ?php the_author() ? > // Categorías: < ?php the_category(', ') ? >
< /div >
< div class="post-entry" >
< ?php the_content('Read more...'); ? >
< /div >
< div class="post-info" >
< ?php comments_popup_link('Comments (0)', 'Comment (1)', 'Comments (%)'); ? > // <a>#respond" >Add Comment</a>
< /div >
< /div >
< !-- /Post -- >
< ?php endwhile; ? >
< !-- Navigation -- >
< div class="navigation" >
< div class="navigation-previous" >< ?php next_posts_link('« Previous Entries') ? >< /div >
< div class="navigation-next" >< ?php previous_posts_link('Next Entries »') ? >< /div >
< /div >
< !-- /Navigation -- >
< ?php else : ? >
< !-- Post -- >
< div class="post" >
< div class="post-title" >
< h2 >Not Found< /h2 >
< /div >
< div class="post-entry" >
< p >Sorry, but you are looking for something that isnt here.< /p >
< /div >
< /div >
< !-- /Post -- >
< ?php endif; ? >
< div class="clear" >< /div >
< /div >
< !-- /Content -- >
< ?php get_footer(); ? >