Paulo Ramalho
Fils de soutien créés au cours des 30 derniers jours : 0
Sujets de forum favoris
This user has no favorite topics.
Sujets de forum créés
| Status | Topic | Supporter | Voix | Publications | Nouveauté |
|---|---|---|---|---|---|
|
Language dependent content
Commencé par : Paulo Ramalho
in: 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 | Il y a 3 years, 7 months | |
|
CUSTOM FIELD CONDITIONAL
Commencé par : Paulo Ramalho in: Toolset Professional Support |
|
3 | 5 | Il y a 3 years, 11 months | |
|
Conditional on PHP shortcode
Commencé par : Paulo Ramalho
in: Toolset Professional Support
Problem: Solution: You can find proposed solution in this case with the following reply: Relevant Documentation: |
|
2 | 6 | Il y a 4 years, 3 months | |
|
Display related posts based its terms
Commencé par : Paulo Ramalho in: Toolset Professional Support |
|
2 | 4 | Il y a 4 years, 4 months | |
|
Search results on another page
Commencé par : Paulo Ramalho in: Toolset Professional Support |
|
2 | 6 | Il y a 4 years, 8 months | |
|
I prefer to hardcode the theme and I use to make it with echo_shortcode on the old version of Views
Commencé par : Paulo Ramalho in: Toolset Professional Support |
|
2 | 4 | Il y a 4 years, 9 months | |
|
Loan Books System
Commencé par : Paulo Ramalho in: Toolset Professional Support |
|
2 | 6 | Il y a 4 years, 10 months |