Wordpress
icona custom post
w function.php lub tam gdzie definiujemy custom post type w jego definicji podajemy: function myTheme_init_posttypes(){ $event_args = array( 'labels' => array( 'name' =>...
custom post Wordpress
tytuł kategorii custom post
- <h2>Kategoria: <span><?php $term_list = wp_get_post_terms($post->ID, 'custom-category', array("fields" => "names")); echo $term_list;...
custom post Wordpress
pobranie listy wpisów custom post
Wykaz wszystkich wpisów konkretnego Custom Post <?php $args = array( 'post_type' => 'custom_post_name', 'posts_per_page' => -1, 'orderby' =>...
Wordpress
pobranie wybranych wpisów na dowolną stronę – custom field Wpis – Post Object
dodajemy w panelu custom field Wpis - Post Object i w kodzie strony wstawiamy: <!-- start get data of post --> <?php $post_object = get_sub_field('your_field_name'); if(...
Wordpress
lista kategorii custom post
pobranie listy category name & link custom post <?php $args = array( 'taxonomy' => 'my-category', 'orderby' => 'name', 'order' => 'ASC', 'show_count'...
Wordpress
paginacja custom post WordPress
tworzenie pętli custom wpisów z podziałem ich wykazu na strony: <?php $args = array( 'post_type' => 'event', 'posts_per_page' => 16, 'orderby' => 'post_date',...
custom post Wordpress
WordPress funkcje
wptexturize ( string $text, bool $reset = false ) - wstawia tekst z modyfikacją znaków wp_mail( $to, $subject, $message, $headers, $attachments ); - znajduje się w wp-includes -...
Wordpress
dodanie opcji child w WP
w temacie strony w pliku function.php wstawiamy kod: function is_child($pageID) { global $post; if( is_page() && ($post->post_parent==$pageID) ) { return...