Como trocar o título de um "Post Protegido"
-
Olá galera,
Gostaria da ajuda de vocês pra fazer uma alteração no título do post quando ele está protegido. A alteração seria a seguinte: quando o artigo está protegido eu quero mostrar no lugar do título a frase “Post Protegido!” e ao informar a senha e desbloquear o post eu quero mudar essa frase pelo título do artigo em questão.
Acredito que essa modificação seja feita no arquivo:
/wp-includes/post-template.php
, que é aonde se encontram os códigos dos artigo protegidos. Porém, não estou conseguindo criar essa condicional. Segue o código que estou usando atualmente:function get_the_title( $post = 0 ) { $post = get_post( $post ); $title = isset( $post->post_title ) ? $post->post_title : ''; $id = isset( $post->ID ) ? $post->ID : 0; if ( ! is_admin() ) { if ( ! empty( $post->post_password ) ) { /** * Filter the text prepended to the post title for protected posts. * * The filter is only applied on the front end. * * @since 2.8.0 * * @param string $prepend Text displayed before the post title. * Default 'Protected: %s'. */ $protected_title_format = apply_filters( 'protected_title_format', __( '<span class="fa fa-lock"></span> %s' ) ); $title = sprintf( $protected_title_format, $title ); } else if ( isset( $post->post_status ) && 'private' == $post->post_status ) { /** * Filter the text prepended to the post title of private posts. * * The filter is only applied on the front end. * * @since 2.8.0 * * @param string $prepend Text displayed before the post title. * Default 'Private: %s'. */ $private_title_format = apply_filters( 'private_title_format', __( 'Private: %s' ) ); $title = sprintf( $private_title_format, $title ); } }
Se alguém puder me ajudar a criar essa condicional…
Agradeço desde já!!
Visualizando 1 resposta (de um total de 1)
Visualizando 1 resposta (de um total de 1)
- O tópico ‘Como trocar o título de um "Post Protegido"’ está fechado para novas respostas.