Kişisel bir blog için WordPress kurulumum var ve yıllar boyunca yazdığım tüm küçük web bitlerini yavaş yavaş blogdaki sayfalara taşıyorum.
Böyle bir sayfa http://www.projecttoomanycooks.co.uk/cgi-bin/memory/majorAnalysis.py bir kelime listesi döndüren basit bir python betiğidir - bu davranışı bir wordpress sayfasına yerleştirmek istiyorum - Birisi wordpress içinde bir nokta python çalıştırmanın easyist yolu için beni doğru yönde gösterebilir mi?
EDIT - aşağıdaki harika cevabı takiben, daha fazla var ... ama ne yazık ki hala tam olarak orada değil ...
Sunucuda çalışan python var ...
projecttoomanycooks server [~/public_html/joereddington/wp-content/plugins]#./hello.py
Hello World!
ve aktif eklenti ile aynı dizinde ...
Aşağıdaki kodu içeren python kodu ...
#!/usr/bin/python
print("Hello World!")
Php:
<?php
/**
* Plugin Name: Joe's python thing.
* Plugin URI: http://URI_Of_Page_Describing_Plugin_and_Updates
* Description: A brief description of the Plugin.
* Version: The Plugin's Version Number, e.g.: 1.0
* Author: Name Of The Plugin Author
* Author URI: http://URI_Of_The_Plugin_Author
* License: A "Slug" license name e.g. GPL2
*/
/*from http://wordpress.stackexchange.com/questions/120259/running-a-python-scri
pt-within-wordpress/120261?noredirect=1#120261 */
add_shortcode( 'python', 'embed_python' );
function embed_python( $attributes )
{
$data = shortcode_atts(
array(
'file' => 'hello.py'
),
$attributes
);
$handle = popen( __DIR__ . '/' . $data['file'], 'r');
$read = fread($handle, 2096);
pclose($handle);
return $read;
}