Consulta para o tipo de postagem personalizado?
3 respostas
- votos
-
- 2011-01-06
query_posts( array( 'post_type' => array('post', 'portfolio') ) );
quemostra aspostagensnormaise postagens dentro
portfolio
digiteou
query_posts('post_type=portfolio');
Para apenas
portfolio
.Use como uma consultanormal WP - Leia o códice: http://codex.wordpresspress.org/Function_reference/query_posts # uso e http://codex.wordpress.org/function_reference/query_posts#post_.26_page_parameters
<?php query_posts(array( 'post_type' => 'portfolio', 'showposts' => 10 ) ); ?> <?php while (have_posts()) : the_post(); ?> <h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2> <p><?php echo get_the_excerpt(); ?></p> <?php endwhile;?>
query_posts( array( 'post_type' => array('post', 'portfolio') ) );
which shows both normal posts and posts inside
portfolio
typeor
query_posts('post_type=portfolio');
for only
portfolio
.Use as normal WP Query - read the Codex: http://codex.wordpress.org/Function_Reference/query_posts#Usage and http://codex.wordpress.org/Function_Reference/query_posts#Post_.26_Page_Parameters
<?php query_posts(array( 'post_type' => 'portfolio', 'showposts' => 10 ) ); ?> <?php while (have_posts()) : the_post(); ?> <h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2> <p><?php echo get_the_excerpt(); ?></p> <?php endwhile;?>
-
Esta é uma respostabastante antiga -maspara ser clara,não há como você deveriaestarfazendoisso.Quaseinevitavelmente levará a 404se uma série de outrosproblemas.Porfavor,veja as respostas @ kaiser ou [estapostagem sobrepor que vocênão deve usar `Query_Posts ()`] (http://wordpress.stackexchange.com/questions/50761/when-to-s-posts-e-pré-get-get-get-posts/50762 # 50762)This is a fairly old answer - but to be clear, there is not the way you should being doing this. It will almost inevitably lead to 404s and a host of other problems. Please see @kaiser's answers or [this post on why you shouldn't use `query_posts()`](http://wordpress.stackexchange.com/questions/50761/when-to-use-wp-query-query-posts-and-pre-get-posts/50762#50762)
- 7
- 2013-05-28
- Stephen Harris
-
- 2013-05-27
respostatardia como a respostaprincipal usa
query_posts()
,que deve nunca serfeito.Use umfiltro
Use obotão
pre_get_posts
e ajuste otipoportfolio
Postpara a consultaprincipal. Use tags condicionais para determinar onde você desejaterestefiltro.Exemplo rápido
<?php defined( 'ABSPATH' ) OR exit; /* Plugin Name: (#6417) "Portfolio" post type in query */ add_filter( 'pre_get_posts', 'wpse_6417_portfolio_posts' ); function wpse_6417_portfolio_posts( $query ) { if ( ! $query->is_main_query() // Here we can check for all Conditional Tags OR ! $query->is_archive() // For e.g.: Every archive will feature both post types ) return $query; $query->set( 'post_type', array( 'post', 'portfolio' ) ); return $query; }
Isenção de responsabilidade
O código acima é umplugin,maspode simplesmente obter recheadono arquivo
functions.php
do seutema (que é não recomendado).Late answer as the main answer uses
query_posts()
, which should never be done.Use a filter
Use the
pre_get_posts
filter and just set theportfolio
post type for the main query. Use Conditional Tags to determine where you want to have this filter.Quick Example
<?php defined( 'ABSPATH' ) OR exit; /* Plugin Name: (#6417) "Portfolio" post type in query */ add_filter( 'pre_get_posts', 'wpse_6417_portfolio_posts' ); function wpse_6417_portfolio_posts( $query ) { if ( ! $query->is_main_query() // Here we can check for all Conditional Tags OR ! $query->is_archive() // For e.g.: Every archive will feature both post types ) return $query; $query->set( 'post_type', array( 'post', 'portfolio' ) ); return $query; }
Disclaimer
The above code is a plugin, but can simply get stuffed in the
functions.php
file of your theme (which is not recommended).-
Por quenão é recomendado adicioná-lo afunções?Certamente,se o administrador do site alterar otema,elesprecisariam abordar comoexibir oportfólionapáginainicial comestenovotema de qualquermaneira.Então,eu diria que étão válidopara adicionarissoem funçõesem vez de umplugin.Oueuestouesquecendo de alguma coisa?why is it not recommended to add it to functions? Surely, if the site admin changes the theme they would need to address how to display the portfolio on the home page with this new theme anyway. So, I would say it is just as valid to add this in functions rather than a plugin. Or am I missing something?
- 0
- 2016-11-29
- Phill Healey
-
@Phillheley como você disse,os dados seriaminvisíveise vocêteria que copiare colar o código ao redor.Modificações lógicaspesadaspara consultas sãomelhor servidas viaplugins,enquantoexibindoe oestilo deve sermantidoem temas.@PhillHealey As you said, the data would be invisible and you would have to copy and paste the code around. Heavy, logic modifications to queries are best served via plugins, while displaying and styling should be kept in themes.
- 0
- 2016-11-29
- kaiser
-
Não seesse códigoforespecíficopara otema.Not if that code is specific to the theme.
- 0
- 2016-12-03
- Phill Healey
-
@PhillHealey Umtipo depostagem deve **nunca ** serespecíficopara umtema.@PhillHealey A post type should **never** be specific to a theme.
- 0
- 2016-12-04
- kaiser
-
Ok,se você quiserentrarem algunstit-for-tat sobre absolutos,entãotudobem.Noentanto,não é correto dizer quenenhum códigoespecífico de design deve serempurradopara umplugin.Hámuitas vezes quandoissonão é apropriado.Ok, if you want to get in some tit-for-tat over absolutes then fine. However, It's just not correct to say that none design specific code should be pushed out to a plugin. There are lots of times when that's not appropriate.
- 0
- 2016-12-05
- Phill Healey
-
- 2013-12-11
Adicioneeste código ao seu arquivo Funções de Temas Filhos (recomendado)para adicionar suaspáginas CPT únicas ao seu loopprincipal
add_action( 'pre_get_posts', 'add_custom_post_types_to_loop' ); function add_custom_post_types_to_loop( $query ) { if ( is_home() && $query->is_main_query() ) $query->set( 'post_type', array( 'post', 'portfolio' ) ); return $query; }
fonte http://codex.wordpress.org/post_types
ou Criar ummodelo depágina de arquivamentopersonalizado.phol.php que sóexibirá suaspáginas CPT. Isso sóprecisa serfeito se vocênãotiver adicionado umapágina de arquivo usando as configurações doplug-in.
Exemplo: 'has_archive'=>true,
Vocêtambémpode controlar quantaspáginas sãoexibidase a ordemna qualeles sãoexibidosnapágina Arquivo usandoeste código:
add_action( 'pre_get_posts', 'cpt_items' ); function cpt_items( $query ) { if( $query->is_main_query() && !is_admin() && is_post_type_archive( 'portfolio' ) ) { $query->set( 'posts_per_page', '8' ); $query->set( 'order', 'ASC' ); } }
Add this code to your child themes functions file (recommended) to add your single CPT pages to your main loop
add_action( 'pre_get_posts', 'add_custom_post_types_to_loop' ); function add_custom_post_types_to_loop( $query ) { if ( is_home() && $query->is_main_query() ) $query->set( 'post_type', array( 'post', 'portfolio' ) ); return $query; }
Source http://codex.wordpress.org/Post_Types
Or create a custom archive-portfolio.php page template which will only display your CPT pages. This only needs to be done if you haven't added a archive page using the plugin settings.
Example: 'has_archive' => true,
You can also control how many pages are displayed and the order in which they're displayed on the archive page using this code:
add_action( 'pre_get_posts', 'cpt_items' ); function cpt_items( $query ) { if( $query->is_main_query() && !is_admin() && is_post_type_archive( 'portfolio' ) ) { $query->set( 'posts_per_page', '8' ); $query->set( 'order', 'ASC' ); } }
Euinstalei o Tipo Personalizado Tipo UI Plugin .Após a ativação desteplugin,criei umtipo depostagempersonalizado chamado
portfolio
.Agora quero usarissonapágina deportfólionofront-end.Comofaçoparafeticar Todopost que são dotipo depostagempersonalizadoportfolio
?