własny shortcode WP
aby dodać własny shortcode należy w function.php wprowadzić kod:
// foto info single page function text_info( $atts, $content = null ) { return '<span class="text_info">' . $content . '</span>'; } add_shortcode( 'info', 'text_info' );
—
Hope this helps and happy coding :)
Zobacz jeszcze
ID Front page, id post page Wordpress
aby pobrać id strony która jest zadeklarowana w temacie jako frontpage (statyczna strona) lub strony postów (blog) należy użyć kodu: <?php $frontpage_id = get_option(...
Wordpress
dodanie klasy do co trzeciego elementu
aby dodać klasę do co trzeciego elementu w liście wprowadzamy w js kod: $(".featured.module").filter(function(index, element){ return index % 3 ==...