Wordpress theme customization

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Craaig
    replied
    Re: Wordpress theme customization

    One way of going about it is to customize the theme. Go to ‘Appearance’ and then to ‘Theme’. Click on ‘widgets’. It will show you all the elements of the theme. If you don’t want certain things in the sidebar or in the header or footer, they can be removed by modifying the respective widgets.

    Leave a comment:


  • Eric Brown
    replied
    Re: Wordpress theme customization

    Originally posted by DataCab View Post
    I have uploaded a ready made free wordpress theme to my blog and it is successfully installed but the theme has some out going links and i couldn't found the place to remove them. I have checked all the files header and footer but still it is showing the links on side bar. please help me with it.
    If you could let us know what links you want to remove then it would allow us to help you in a better way. The above steps shown by Rock would ideally remove the Archives and category links which you might want to keep.

    Leave a comment:


  • Rock
    replied
    Re: Wordpress theme customization

    Originally posted by DataCab View Post
    I have uploaded a ready made free wordpress theme to my blog and it is successfully installed but the theme has some out going links and i couldn't found the place to remove them. I have checked all the files header and footer but still it is showing the links on side bar. please help me with it.
    Hi!

    Edit this wp-content/themes/default/sidebar.php & delete the following lines:
    Code:
    <li><h2>Archives</h2> <ul> <?php wp_get_archives('type=monthly'); ?> </ul> </li>
    Code:
     <?php wp_list_categories('show_count=1&title_li=<h2>Categories</h2>'); ?>
    Code:
     <?php wp_list_bookmarks(); ?>
    Code:
     <?php wp_meta(); ?>
    Let us know how it goes..

    Leave a comment:


  • DataCab
    started a topic Wordpress theme customization

    Wordpress theme customization

    I have uploaded a ready made free wordpress theme to my blog and it is successfully installed but the theme has some out going links and i couldn't found the place to remove them. I have checked all the files header and footer but still it is showing the links on side bar. please help me with it.
Working...
X