Paulo Ramalho
Admite hilos creados en los últimos 30 días: 0
Debates favoritos del foro
Este usuario no tiene debates favoritos.
Temas del foro creados
| Status | Debate | Supporter | Voces | Mensajes | Caducidad |
|---|---|---|---|---|---|
|
Language dependent content
Iniciado por: Paulo Ramalho
en: Toolset Professional Support
Problem: How to show content of a custom post type in a specific language while WPML is active Solution: In the WP_Query try to use the lang attribute:
<?php
$loop = new WP_Query( array (
'post_type' => 'YOUR_CUSTOM_TYPE_SLUG',
'lang' => 'en', // use language slug in the query
// 'lang' => 'de,fr', // query German and French posts
// 'lang' => '', // query posts in all languages
'paged' => get_query_var( 'paged' ),
'posts_per_page' => 10,
'post_status' => 'publish',
) );
while( $loop->have_posts() ) : $loop->the_post(); ?>
// html here
<?php endwhile; ?>
|
|
2 | 5 | 3 years, 7 months ago | |
|
CUSTOM FIELD CONDITIONAL
Iniciado por: Paulo Ramalho en: Toolset Professional Support |
|
3 | 5 | 3 years, 11 months ago | |
|
Conditional on PHP shortcode
Iniciado por: Paulo Ramalho
en: Toolset Professional Support
Problem: Solution: You can find proposed solution in this case with the following reply: Relevant Documentation: |
|
2 | 6 | 4 years, 3 months ago | |
|
Display related posts based its terms
Iniciado por: Paulo Ramalho en: Toolset Professional Support |
|
2 | 4 | 4 years, 4 months ago | |
|
Search results on another page
Iniciado por: Paulo Ramalho en: Toolset Professional Support |
|
2 | 6 | 4 years, 8 months ago | |
|
I prefer to hardcode the theme and I use to make it with echo_shortcode on the old version of Views
Iniciado por: Paulo Ramalho en: Toolset Professional Support |
|
2 | 4 | 4 years, 9 months ago | |
|
Loan Books System
Iniciado por: Paulo Ramalho en: Toolset Professional Support |
|
2 | 6 | 4 years, 10 months ago |