Hello,
I’ve just downloaded the subtitle plugin, and it won’t display on any of my posts. I looked into the possibility that perhaps another plugin would not allow it to display, but I can’t find the answer. Any suggestions? I’m fairly new to WordPress.
Thanks!
]]>I want to use the subtitle as my permalink. How do I go about doing this?
]]>Hi,
thx for the plugin.
Is there a way to have double quotes in subtitle ?
Tried to write the HTML entity in field,
but second time i save input, field content is lost.
I would like to selectively remove the Subtitle input in the post editor for certain custom post types.
I didn’t want to modify the core plugin.
Would this be something that could be added to the plugin?
Thanks!
]]>Hi there, I’m pulling in a list of pages, listing them using the following code:
<?php
$child_pages = $wpdb->get_results("SELECT * FROM $wpdb->posts WHERE post_parent = 29 AND post_type = 'page' ORDER BY menu_order", 'OBJECT'); ?>
<ul class="team-list"><?php if ( $child_pages ) : foreach ( $child_pages as $pageChild ) : setup_postdata( $pageChild ); ?>
<li class="team-list">
<div class="child-name">
<a href="<?php echo get_permalink($pageChild->ID); ?>" rel="bookmark" title="<?php echo $pageChild->post_title; ?>"><?php echo $pageChild->post_title; ?></a>
</div></li>
<?php endforeach; endif;
?></ul>
I’m trying to pull in the sub title, but I can’t seem to get it to work.
Any help would be much appreciated.
Thanks
]]>I was getting the following notice while using version 1.2 of The Subtitle plugin:
Notice: Undefined index: the_sub_nonce in /path/to/www/wp-content/plugins/the-subtitle/the-subtitle.php on line 112
I removed the notice by changing line 112 to:
if (!isset($_POST['the_sub_nonce']) || !wp_verify_nonce( $_POST['the_sub_nonce'], plugin_basename( __FILE__ ) ) )
return;
Seem right?
]]>I love this plugin and what it does, but for some reason the input field for the subtitle appears (on the admin side) right on top of the input field for the title. In other words, it’s floating on top of the other input field. I tried editing some CSS is my wpadmin css file of my theme, but it won’t budge. Any idea how to fix this?
]]>