Coder Social home page Coder Social logo

Comments (6)

philiparthurmoore avatar philiparthurmoore commented on July 18, 2024 1

from subtitles.

philiparthurmoore avatar philiparthurmoore commented on July 18, 2024

Can you post your custom loop code? I can take a look. Or just show me the entire template. I suspect there's an issue with your loop placement.

from subtitles.

jeremycherfas avatar jeremycherfas commented on July 18, 2024

Sure; and thanks for the prompt reply. It is a bit cargo-cult, but other than that works.

<?php
/**
 * Template Name: OurDailyBread
 * The template for displaying content in one categtory.
 *
 */

get_header(); ?>

<div id="primary" class="content-area">
        <main id="main" class="site-main" role="main">
 
        <?php
        $paged = (get_query_var( 'paged' )) ? get_query_var( 'paged' ) : 1;
        $args = array(
            'post_type' => 'post',
            'post_status' => 'publish',
            'cat' => '67',
            'posts_per_page' => 5,
            'paged' => $paged,
        );
        $arr_posts = new WP_Query( $args );
 
        if ( $arr_posts->have_posts() ) :
 
            while ( $arr_posts->have_posts() ) :
                $arr_posts->the_post();
                ?>

                <?php get_template_part( 'content', 'page' ); ?> // this is my standard page, which displays subtitle fine
                <?php
            endwhile;
        endif;
        ?>
 
        </main><!-- .site-main -->
    </div><!-- .content-area -->

<?php get_sidebar(); ?> 
<?php get_footer(); ?>

from subtitles.

philiparthurmoore avatar philiparthurmoore commented on July 18, 2024

@jeremycherfas I'm very sorry to have left you hanging on this. Did you end up ditching the plugin/theme conflict or do you still need help?

from subtitles.

jeremycherfas avatar jeremycherfas commented on July 18, 2024

Well, I didn't ditch it, but I am not able to display subtitles either. And I seem to be able to live without ...

from subtitles.

philiparthurmoore avatar philiparthurmoore commented on July 18, 2024

Thanks for the update. I will mark this closed but please see this.

In your case, the following code snippet would probably work:

if ( function_exists( 'the_subtitle' ) ) {
	the_subtitle( '<p class="entry-subtitle">', '</p>' );
}

from subtitles.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.