我的数据库中有一个名为:persona的表.我只需要将该表中的数据检索到wordpress页面内的html表中.到目前为止,这就是我所拥有的:table border=1trthFirstname/ththLastname/ththPoints/th/tr...
我的数据库中有一个名为:persona的表.
我只需要将该表中的数据检索到wordpress页面内的html表中.到目前为止,这就是我所拥有的:
<table border="1">
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Points</th>
</tr>
<tr>
<?php
global $wpdb;
$result = $wpdb->get_results ( "SELECT * FROM persona" );
foreach ( $result as $print ) {
echo '<td>' $print->ID_per.'</td>';
}
?>
</tr>
我在正在处理的特定页面中添加并发布它,但是当我刷新页面时,它仅显示页面中打印的代码.我想知道我是否将代码放在正确的位置,或者我不知道将代码放在哪里.
看下面的图片:
解决方法:
根据您的情况,最简单,最好的方法是在您的主题中添加一个shortcode.
如果将此代码添加到主题的functions.php文件中,则可以通过在任何页面或帖子中添加[角色表]来在任意位置显示信息.
// add the shortcode [persona-table], tell WP which function to call
add_shortcode( 'persona-table', 'persona_table_shortcode' );
// this function generates the shortcode output
function persona_table_shortcode( $args ) {
global $wpdb;
// Shortcodes RETURN content, so store in a variable to return
$content = '<table>';
$content .= '</tr><th>Firstname</th><th>Lastname</th><th>Points</th></tr>';
$results = $wpdb->get_results( ' SELECT * FROM persona' );
foreach ( $results AS $row ) {
$content = '<tr>';
// Modify these to match the database structure
$content .= '<td>' . $row->firstname . '</td>';
$content .= '<td>' . $row->lastname . '</td>';
$content .= '<td>' . $row->ID_per . '</td>';
$content .= '</tr>';
}
$content .= '</table>';
// return the table
return $content;
}
沃梦达教程
本文标题为:php-将数据库信息显示到html表WordPress中
基础教程推荐
猜你喜欢
- dedecms根据来访IP区域自动跳转对应页面的方法 2022-07-21
- pbootcms二次开发必须要了解的后台目录结构 2023-07-09
- dedecms织梦cms常用判断语句汇总 2022-06-24
- PbootCMS网站标题描述等标签限制字数的办法 2023-07-08
- pbootcms网站自动清理runtime缓存方法 2023-07-09
- 织梦dedecms调用当前栏目文章数的方法 2022-11-08
- 织梦DedeCMS搜索指定多个栏目文档的办法 2022-11-11
- 织梦dedecms如何在dede:sql中使用[field:global.autoindex/] 2022-08-27
- dedecms织梦无需登录注册可下单购买的修改 2022-11-04
- dedecms织梦全局变量调用方法总结 2023-07-08