WP Subtitle Plugin Problem

时间:2011-03-12 作者:toomanyairmiles

我在使用WP字幕插件时遇到了一些问题。

插入后<?thesubtitle()?><?getthe_subtitle($id)?> 进入索引。php模板我收到一个“调用未定义函数”错误-循环内部或外部似乎都无关紧要!

提前感谢

//更新

在大多数页面中,由于toscho更新了语法,以下内容现在可以正常工作

<?php get_header(); ?>

<div class="title-posts-container">
<h2 class="title-posts"><?php the_title(); ?></h2>
<p class="title-posts-strap"><?php the_subtitle(); ?></p>
</div>

<div class="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
但在索引中没有这样的乐趣。php,其中以下操作失败

<?php get_header(); ?>

<div class="title-posts-container">
<h2 class="title-posts"><?php the_title(); ?></h2>
<p class="title-posts-strap"><?php the_subtitle(); ?></p>
</div>

<div class="content">

<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>

1 个回复
最合适的回答,由SO网友:fuxia 整理而成

Try the correct syntax:

<?php the_subtitle(); ?>
<?php get_the_subtitle( $id ); ?>
结束