Dodanie widgetów do kodu strony

W kodzie zamieszczamy:

  • functions.php
    
    if ( function_exists('register_sidebar') ) {
    	register_sidebar(array(
            'name'=>'Widget Name1',
    	'before_widget' => '<li>',
    	'after_widget' => '</li>',
    	'before_title' => '<h2>',
    	'after_title' => '</h2>',
    	));
    
    	register_sidebar(array(
    	'name'=>'Widget Name2',
    	'before_widget' => '<li>',
    	'after_widget' => '</li>',
    	'before_title' => '<h2>',
    	'after_title' => '</h2>',
    	));
    }
    
    
  • w kodzie strony
    <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Widget Name1') ) : ?><?php endif; ?>
    <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Widget Name2') ) : ?><?php endif; ?>
    
Wordpress

Hope this helps and happy coding :)

Zobacz jeszcze

Ustawianie przyjaznych linków w WP

Panel administracyjny strony na WP - Settings/Ustawienia - Permalink/Bezpośrednie Odnośniki - Custom Structure/ Własny format ustawiamy na...

nazwa użytkownika / user name

<?php global $post; $author_id=$post->post_author; ?> <?php the_author_meta( 'first_name', $author_id ); ?> <?php the_author_meta( 'last_name', $author_id );...