rafito
Respostas no Fórum
-
Fórum: Ajustando o WordPress
Em resposta a: Post inteiro na HomeÉ! acho que vou trocar de tema mesmo. Mandei um email para o suporte do tema. A home.php não tinha ‘the_excerpt’.
Valeu, Lucas!Fórum: Ajustando o WordPress
Em resposta a: Post inteiro na Home1. Não inseri no post não. E olhei-o agora, nem automatco está com essa tag
2. Esse arquivo ‘postype’ eu não tenho. São esses arquivos que aparecem no meu tema:
Modelos
Modelo de página 404
(404.php)
Tax-meta-class.php
Comentários
(comments.php)
content-audio.php
content-events.php
content-home-sidebar.php
content-masonry.php
content-members.php
content-portfolio.php
content-services.php
content-timeline.php
content.php
Rodapé
(footer.php)
shortcodes.php
Funções do tema
(functions.php)
Cabeçalho
(header.php)
home.php
Modelo da página principal
(index.php)3. Não tem outro filter não.
Fórum: Ajustando o WordPress
Em resposta a: Post inteiro na HomeOlha, acho que achei aqui. Mas sou muito ‘noob’. Olha como está, parece que realmente está com filtro:
/* Clear br form content */
/***********************************************************************************************/function clear_br($content){
return str_replace(“
“,””, $content);}
add_filter(‘the_content’, ‘clear_br’);
e não sei se faz diferença, mas a parte do readmore está assim:
/* Filter content for read more */
/***********************************************************************************************/function manual_excerpt($content) {
$audio = get_audio_link($content, true);
$read = ‘‘.__(‘Read more’, ‘coolstuff’).’‘;
$excerpt = get_the_excerpt();$new = $audio.'<p>’.$excerpt.'</p>’;
return $new;
}O que eu faço? Obrigado
Fórum: Ajustando o WordPress
Em resposta a: Post inteiro na HomeEntendi
Eu estou tentando postar no modo padrão “content.php”
e aparece assim:
<?php
/***********************************************************************************************/
/* Template for the default post format */
/***********************************************************************************************/
?><article <?php post_class(array(‘element-box’)); ?> id=”post-<?php the_ID(); ?>”>
<header class=”element-top-bar clearfix”>
<?php the_author_posts_link(); ?>
<b class=”time-info fr”><?php the_time( ‘h A | d M’ ); ?></b>
</header><h2>
“>
<?php the_title(); ?>
</h2><?php if(get_post_meta($post->ID, ‘coolstuff_atr_video’, true)): ?>
<figure>
<?php echo get_post_meta($post->ID, ‘coolstuff_atr_video’, true); ?>
</figure><?php else: ?>
<?php if (has_post_thumbnail()) : ?>
<?php
$domsxe = simplexml_load_string(get_the_post_thumbnail());
$thumbs = $domsxe->attributes()->src;?>
<figure>
” class=”show-image” title=”This is image caption”>
<?php the_post_thumbnail(); ?>
<b class=”zoom-icon”></b>
</figure><?php endif; ?>
<?php endif; ?>
<?php add_filter(‘the_content’, ‘get_audio_link’) ?>
<?php the_content(‘Read more’); ?>
<footer class=”element-bottom-bar”>
-
<?php
// Only show the comments link if comments are allowed and it’s not password protected
if (comments_open() && !post_password_required()) {
comments_popup_link(‘<b class=”comment-icon”></b> 0 Comments’, ‘<b class=”comment-icon”></b> 1 Comment’, ‘<b class=”comment-icon”></b> % Comments’);
}
?> -
<?php
ob_start();
the_category(‘,’, ‘multiple’);
$cat = ob_get_contents(); /* Captured output */
ob_end_clean(); /* Stop capture */
$full_cat = explode(“,”, $cat);
echo $full_cat[0];
?>
- “>Permalink
</footer>
</article> <!– /.element-box [image]–> -
<?php