- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
http://lakers.sonikastudios.com/gallery/sample-gallery-post-1/
该帖子有几个页面使用 WordPress 的 快速标签。这篇文章也是一个自定义的 post_type.. 在主题模板的functions.php 中使用以下代码。
add_action( 'init', 'create_post_type' );
function create_post_type() {
register_post_type( 'gallery',
array(
'labels' => array(
'name' => __( 'Galleries' ),
'singular_name' => __( 'Gallery' )
),
'public' => true,
'supports' => array('title', 'editor', 'thumbnail', 'excerpt', 'custom-fields', 'comments')
)
);
使用此代码,我成功地在管理部分中显示了自定义帖子类型。我在那里添加了一篇新文章,带有翻页器..
因此,使用 wp_link_pages() 函数,我使翻页功能正常工作。但它仅适用于类别下的常规帖子,不适用于定义为“图库”post_type 的帖子。例如这个页面http://lakers.sonikastudios.com/editorials/catching-the-buss-to-the-hall-of-fame/3/与帖子内的分页配合得很好。
我没有使用任何影响帖子显示方法或导航的插件,而且我没有弄乱 .htaccess 文件 - 无论 WordPress 写什么,都是我得到的。
任何帮助都会很棒..该网站即将准备就绪,但我们遇到了这个瓶颈,这让我很沮丧!
我正在使用最新版本的 Wordpress,并开始使用 Whiteboard 主题(为 WP3 制作的新主题)进行开发。 ]
更新:gallery.php(通过页面模块分配以显示 post_type“画廊” - 我确认这是我加载画廊 post_type 帖子时加载的文件)
<?php
/*
Template Name: Gallery
*/
?>
<?php get_header();
$exclude = array();
?>
<div class="grid_11" id="mainbar">
<?php if ( have_posts() ) while ( have_posts() ) : the_post();
$exclude[]=get_the_ID();
?>
<div id="post-<?php the_ID(); ?>" <?php post_class('grid_11 alpha omega'); ?>>
<h2><a href="<? the_permalink(); ?>" title="<? the_title();?>"><? the_title();?></a></h2>
<div class="social_media_balloons">
<?
if (function_exists('fbshare_manual')) echo fbshare_manual();
?>
<?
if (function_exists('tweetmeme')) echo tweetmeme();
?>
</div>
<?
$author_gravatar = get_gravatar(get_the_author_meta('user_email'));
?>
<img src="<? echo $author_gravatar;?>" class="alignleft" />
<?
echo posted_by_and_category();
?>
<div class="grid_11 alpha omega">
<?php the_content(); ?>
<div id="single_article_selectors">
<?php wp_link_pages('before=<div class="single_article_selector">&after=</div>'); ?>
<?php wp_link_pages('before=<div class="single_article_selector">&after=</div>&next_or_number=next'); ?>
</div>
<div class="grid_11 alpha omega" id="social_media_links">
<div class="grid_5 alpha">
<p><a href="http://www.twitter.com/LakersNation" target="_blank"><img src="/images/twittericon.jpg" alt="Twitter" width="32" height="32" class="alignleft">Follow Lakers Nation </a></p>
<p><a href="http://feeds.feedburner.com/LakersNation" target="_blank"><img src="/images/rssicon.jpg" alt="Twitter" width="32" height="32" class="alignleft">Subscribe to Lakers Nation</a></p>
</div>
<div class="grid_5 omega">
<p><a href="http://www.facebook.com/lakersnation" target="_blank"><img src="/images/fbicon.jpg" alt="Twitter" width="32" class="alignleft">Become a Fan on Facebook</a></p>
<p><a href="http://itunes.apple.com/us/app/app-of-l-nation/id349346678?mt=8" target="_blank"><img src="/images/iphoneicon.png" alt="Twitter" width="32" height="32" class="alignleft">Download our Free iPhone App</a></p>
</div>
</div>
<div class="shadow_divider"></div>
</div><!--#post-content-->
<!-- If a user fills out their bio info, it's included here -->
<div id="post-author" class="grid_11 alpha omega">
<h3>Written by <?php the_author_posts_link() ?></h3>
<div id="author-gravatar">
<!-- This avatar is the user's gravatar (http://gravatar.com) based on their administrative email address -->
<?php echo get_avatar( $curauth->user_email, $default = '<path_to_url>' ); ?>
</div><!--#author-gravatar -->
<div id="authorDescription">
<?php the_author_meta('description') ?>
<div id="author-link">
<p>View all posts by: <?php the_author_posts_link() ?></p>
</div><!--#author-link-->
</div><!--#author-description -->
</div><!--#post-author-->
</div><!-- #post-## -->
<div class="grid_11 alpha omega next_prev_links">
<div class="grid_3 alpha">
<p>
<?php previous_post_link('%link', '« Previous post') ?>
</p>
</div><!--.older-->
<div class="grid_3 omega" style="float:right; text-align:right;">
<p>
<?php next_post_link('%link', 'Next Post »') ?>
</p>
</div><!--.older-->
</div><!--.newer-older-->
<?php comments_template( '', true ); ?>
<?php endwhile; ?><!--end loop-->
</div><!--#content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
single.php(默认情况下常规帖子显示模板..)
<?php get_header();
$dirpath = str_replace(get_bloginfo('url'), '',get_bloginfo('template_directory'));
?>
<div class="grid_11" id="mainbar">
<?php if ( have_posts() ) while ( have_posts() ) : the_post();
$exclude[]=get_the_ID();
?>
<div id="post-<?php the_ID(); ?>" <?php post_class('grid_11 alpha omega'); ?>>
<?
echo posted_by_single();
?>
<div class="grid_11 alpha omega">
<div id="single_post_title">
<h1><a href="<? the_permalink(); ?>" title="<? the_title();?>"><? the_title();?></a></h1>
</div>
<div class="social_media_balloons">
<?
if (function_exists('fbshare_manual')) echo fbshare_manual();
?>
<?
if (function_exists('tweetmeme')) echo tweetmeme();
?>
</div>
<div class="grid_11 alpha omega">
<?php the_content(); ?>
<div id="single_article_selectors">
<?php wp_link_pages('before=<div class="single_article_selector">&after=</div>'); ?>
<?php wp_link_pages('before=<div class="single_article_selector">&after=</div>&next_or_number=next'); ?>
</div>
<div class="grid_11 alpha omega" id="social_media_links">
<div class="grid_5 alpha">
<p><a href="http://www.twitter.com/LakersNation" target="_blank"><img src="/images/twittericon.jpg" alt="Twitter" width="32" height="32" class="alignleft">Follow Lakers Nation </a></p>
<p><a href="http://feeds.feedburner.com/LakersNation" target="_blank"><img src="/images/rssicon.jpg" alt="Twitter" width="32" height="32" class="alignleft">Subscribe to Lakers Nation</a></p>
</div>
<div class="grid_5 omega">
<p><a href="http://www.facebook.com/lakersnation" target="_blank"><img src="/images/fbicon.jpg" alt="Twitter" width="32" class="alignleft">Become a Fan on Facebook</a></p>
<p><a href="http://itunes.apple.com/us/app/app-of-l-nation/id349346678?mt=8" target="_blank"><img src="/images/iphoneicon.png" alt="Twitter" width="32" height="32" class="alignleft">Download our Free iPhone App</a></p>
</div>
</div>
<div class="shadow_divider"></div>
</div><!--#post-content-->
</div><!-- #post-## -->
<div class="grid_11 alpha omega next_prev_links">
<div class="grid_3 alpha">
<p>
<?php previous_post_link('%link', '« Previous post') ?>
</p>
</div><!--.older-->
<div class="grid_3 omega" style="float:right; text-align:right;">
<p>
<?php next_post_link('%link', 'Next Post »') ?>
</p>
</div><!--.older-->
</div><!--.newer-older-->
<div class="grid_11 alpha omega" id="comments_container">
<?php comments_template( '', true ); ?>
</div>
</div>
<?php endwhile; ?><!--end loop-->
</div><!--#mainbar-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
最佳答案
您遇到的问题是自定义帖子类型的分页。有一个good thread on WordPress.org一些示例和解决方案用于使其正常工作。
类似的问题已经在StackOverflow上得到了回答。
<小时/>编辑:
参见:Custom Post Type Pagination Test
为了创建测试,我采取了以下步骤:
已从主题主页上传并安装了 Whiteboard 主题
将提供的示例代码添加到functions.php以创建帖子类型
复制提供的“图库模板”代码并将其重命名为 single-gallery.php
(当显示单个帖子类型页面时,模板层次结构会查找 single-PostType.php,然后查找 single.php)
通过点击图库添加新创建了一个新图库
使用添加媒体插入了 4 张图像
已插入 <!--nextpage-->
每张图像之间
已保存帖子并更新永久链接
测试环境
关于wordpress - 定义了特定 post_type 的帖子内的页面导航在 Wordpress 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3732155/
我正在尝试将我所有的东西从 videomarathon.com/dk 导入到 videomarathon.com/se(帖子等) 我正在使用 wordpress 导入器。 上传导出的文件时,它向我显示
Azure WordPress 和 Azure 可扩展 WordPress 之间有什么区别?除了可扩展的 WordPress 允许您选择 azure 存储之外,我看不出有什么区别 最佳答案 基本区别:
我目前正在一个与体育相关的 wordpress 网站上工作。我所有的帖子都在同一个地方,分为足球、网球等。我想改变我博客的结构,比如足球,应该是domain.com/football对于网球,应该是
Wordpress 3 有一个漂亮的 TinyMCE 实现,我相信它比它所基于的原始 TinyMCE 运行得流畅得多。 很棒的事情:- HTML/源代码 View 作为选项卡而不是弹出窗口- 有吸引力
我在 codex.wordpress.org 和developer.wordpress.org 上看到了 WordPress 开发人员文档。他们都有关于插件和主题的文档。由于我不了解 wordpres
我有自定义帖子循环,我想在底部添加“查看全部”链接,该链接应指向包含该类型所有帖子的页面。 我能想到的唯一解决方案是为帖子类型创建一个模板页面并硬编码指向它的链接,但我希望有一个更优雅和动态的解决方案
我正在尝试使用类在 WordPress 中创建自定义 REST API 端点。我也用传统方法做了同样的事情——效果很好。但是,使用类时出现错误 The handler for the route is
我是 WordPress 的新手,正在尝试在主页的一部分中使用一些自定义代码,该部分旨在显示三个类别(白皮书、文章和帖子)中每个类别的 #1 趋势帖子.代码只是显示(据我所知)最近的 3 个帖子,无论
我正在尝试在 wordpress 中设置搜索页面的样式。在 search.php 中,我可以设置大部分页面的样式,但随后的以下语句(我从未经编辑的原始页面中获得)生成了内容。
我希望得到一些帮助来解决一些让我发疯的编码问题。我更喜欢在我的 wordpress 帖子标题中写“&”而不是“and”。但是写出&符号会破坏我们的 twitter、facebook 和 google-
是否可以只重写一个类别? 我有一个类别“ 照片”,并且只针对这个类别。 我只想从/category/photos重写它至 /photos 最佳答案 您可以使用 WP Rewrite API 来实现。
我有一个托管在 www.example.com 上的网站,它是一个 Bitnami 应用程序。 我想在 www.example.com/blog 上可以访问的同一台服务器上安装另一个 bitnami
我一直在做一些测试。注意:这仅在Safari浏览器中发生。 我关闭了所有插件并激活了主题二十(而不是我的Catch Box子主题)。在此配置下,除了顶部菜单中的“主页”选项卡(在Safari中显示如下
我是一名 php 开发人员,目前正在开发一个 CMS/博客系统。我想添加一个永久链接系统,比如 WordPress。我很好奇 WordPress 如何解析永久链接。例如,如何获取 id 这样的数据和
有谁知道Wordpress有多安全? 我不知道如何定义“有多安全”。但与其他CMS系统相比,它的安全性如何? 更新: 详细说明我的项目。 我会有很多用户注册。登录后,他们将可以访问我正在开发的插件。大
是否可以授予编辑者管理主题小部件的功能?默认情况下,只有管理员可以这样做。 谢谢, 乔恩 最佳答案 恐怕您将需要使用插件来实现此目的,因为更改窗口小部件是switch_themes capabilit
我有一个在服务器上运行的多站点 wordpress,我想将我的站点转移到另一台服务器上。我通过 filezilla ftp 下载了完整的文件备份还导出了完整的数据库。 现在我将此备份导入到新服务器 (
我使用通用 HTML 标签在 WordPress 插件中创建了一个表单。我刚刚用 echo 测试了文本框提交的值,它工作正常。提交表单后,我需要在同一页面中重定向或显示成功/失败消息。表单提交后如何显
我想启用 wordpress 站点的调试日志,在 wp-config.php 中添加以下设置 /* WordPress debug mode for developers. */ define('WP
是否可以仅在前端(无需编辑 .mo/.po 文件)更改我的 wordpress 安装(WP 3.0 Multisite)的语言? 在此处更改此选项: 也会在后端更改我的语言。 有任何想法吗? 感谢您的
我是一名优秀的程序员,十分优秀!