是否可以提取WordPress的某些部分,如发布和显示内容。
在发布部分,发布和更新内容或帖子时使用的所有流程。
索引过程我指的是一种从数据库查看内容的简单方法,无需进入网站的许多过程。比如说www.example.com/wordpress/index.php
应该有权直接访问数据库,获取发布内容的信息并显示出来
//<?php
/**
* Front to the WordPress application. This file doesn\'t do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define(\'WP_USE_THEMES\', true);
/** Loads the WordPress Environment and Template */
require( dirname( __FILE__ ) . \'/wp-blog-header.php\' );
it should be like
//<?php
error_reporting(0);
require_once("_includes/connection.php");
require_once("_includes/functions.php");
{
$msg=$_GET[\'msg\'];
}
?>
<?php find_selected_page(); ?>
<?php $query="Select * from index_post order by 1 DESC LIMIT 0,5 ";
$index_post=mysql_query($query);
$query="Select * from freead where cat_id=\'$sel_page[id]\' ";
$freead=mysql_query($query);
?>
以上内容直接从我的数据库获取信息,而不是在查看内容之前检查主题和错误。
SO网友:Rarst
让我们说说你有什么用post_content
在数据库中是$raw_content
. 那么,按主题显示的最终结果(简化并略有变化)大致是什么apply_filters( \'the_content\', $raw_content )
.
哪些过滤器?基本上谁知道呢。core添加了相当多的代码来处理标记和排版调整、短代码处理等事情。但它们也可以(而且确实)通过插件添加。
后期保存有类似的方面。
尝试重建此过程基本上是不切实际的。要么你对原始数据感到满意,要么你必须执行WP核心加载并通过运动获得原始数据。
后者可能会通过以下技术加速SHORTINIT
加载,但它涉及到开发,不可能在公共代码中分发。